This thread is over two years old and may be outdated. Please create a new thread if you need help, or email us if you have an active Premium license.

Replies

14
  1. Andrew Misplon Staff 11 years, 10 months ago

    Hi Dorie

    Sorry, not quite with you. Which element on the page do you want to change the color of?

    We have a wide range of color controls under Appearance > Customize, so chances are the control you’re looking for is in there.

  2. Dorie Rochai Cross 11 years, 10 months ago

    I want a page border to be a different color. Not just the white background. There isn’t an option for it in customize section. Only for the entire background.

  3. Andrew Misplon Staff 11 years, 10 months ago

    The full width layout doesn’t really lend itself to that. If you wanted a border around the main container you could try something like this under Appearance > Custom CSS:

    #main {
    border: 1px solid #000000;
    }

    Adjust 1px and the color as required.

  4. Dorie Rochai Cross 11 years, 10 months ago

    Thank you! That’s exactly what I wanted. Is there anyway to remove the border from the top and bottom, and have it only on the sides?

  5. Andrew Misplon Staff 11 years, 10 months ago

    Sure, that would be:

    #main {
    border: 1px solid #000000;
    border-top: none;
    border-bottom: none;
    }
  6. Dorie Rochai Cross 11 years, 10 months ago

    Perfect! Thanks so much :)

  7. Andrew Misplon Staff 11 years, 10 months ago

    Super, glad that helped.

  8. ydegauquier 11 years, 8 months ago

    Hi,

    I did the change in the CSS, but I would like to have also a border for the Header (with the logo).
    How can I do that?
    http://fdautosport.degauquier.net/

    • Andrew Misplon Staff 11 years, 8 months ago

      Hi

      Something like this:

      header#masthead {
      border: 1px solid red;
      border-bottom: 0;
      }

      Adjust red to your hexadecimal color and adjust 1px as required.

      For further help, please open a new support thread and I’ll jump in there. Thanks.

  9. ydegauquier 11 years, 8 months ago

    Thanks for quick answer ;-)

    • Andrew Misplon Staff 11 years, 8 months ago

      For sure, glad that helped.

  10. ydegauquier 11 years, 8 months ago

    Just last question, same for footer?

  11. Andrew Misplon Staff 11 years, 8 months ago

    Hi ydegauquier

    It would be:

    #colophon {
    border: 1px solid red;
    border-top: none;
    }

    And if you wanted to drop the border from the bottom of the main container:

    #main { border-bottom: none; }

    Please crank open a new support thread for any follow-ups. Thanks very much.

    https://siteorigin.com/new-thread/

Replies on this thread are closed.

Please create a new thread if you have a question, or purchase a SiteOrigin Premium license if you need one-on-one email support.

Have a different question or issue?

Start New Thread