• Hi there,

    Great theme, well done. Can you please let me know how I can change the page background color, currently white and would like to change it to black?

Viewing 8 replies - 1 through 8 (of 8 total)
  • Theme Author Ben Sibley

    (@bensibley)

    Sure, the following CSS will accomplish this:

    .singular-page .entry {
      background: #000;
    }

    You can add that to the “Custom CSS” section found in the Customizer.

    Thread Starter Stephan Griesel

    (@sgriesel)

    great stuff thank you! and if i want to change the text from grey to white?

    Theme Author Ben Sibley

    (@bensibley)

    You’re welcome ??

    This can be done with the following CSS:

    .singular-page {
      color: #fff;
    }
    .singular-page .entry-content a,
    .singular-page .entry-content a:link,
    .singular-page .entry-content a:visited {
      color: #fff;
    }

    This will make the text and any links in the page content white.

    Thread Starter Stephan Griesel

    (@sgriesel)

    thanks so much! best theme and best support ever!!

    Thread Starter Stephan Griesel

    (@sgriesel)

    sorry one last question ?? say if i want to change the main background colour which is currently gray to black as well? what would the css be then?

    Theme Author Ben Sibley

    (@bensibley)

    Here ya go ??

    .site-header, .main, .overflow-container, .menu-secondary-items, .site-header .search-form-container button, .excerpt {
        background: #000;
      }

    That will change the background of the whole site to black.

    Thread Starter Stephan Griesel

    (@sgriesel)

    this is awesome!! thanks. if i want to remove the big header title of the page and also the text just above the footer, how do i go about doing this?

    you must really win a prize for your support ??

    Theme Author Ben Sibley

    (@bensibley)

    I’m sorry, I missed your last question here. To answer it, the following CSS would remove the title on posts/pages:

    .entry-title {
      display: none;
    }

    And the text in the footer can be modified from the “Footer Text” option in the Customizer (Appearance > Customize).

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘page white background’ is closed to new replies.