• I am having an issue with my Dyad theme applying the css in my style.css to the other pages of the website. For instance, the header is green on my homepage but a shade of black on the “about” and “contact” pages and the fonts are different amongst other differences.

    Hopefully an easy fix that I am just not recognizing.

    Please let me know if there is any other information that I should provide.

    The blog I need help with is https://www.practiceofstyle.com.

Viewing 1 replies (of 1 total)
  • what is the CSS in your style.css?

    you seem to have applied styles based on those selectors:
    .home .site-header, .blog .site-header { ... }

    which, per body_class, only get applied to the home page and blog page, not to general static pages.

    add:

    .page .site-header { ... }

Viewing 1 replies (of 1 total)
  • The topic ‘style.css not applying to anything but the homepage’ is closed to new replies.