Site description invisible in Resonar

  • Unknown's avatar

    Hello folks,

    newcommer here. I just turned my website to Resonar theme and found out that my site description is not shown. How to make it visible again on its usual place beneath the site title?

    Cheers,

    Pero

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Pero, add “display: block; to your .site-description CSS rule to get the site description to show up on Resonar.

  • Unknown's avatar

    All right, it worked! Thanks!
    Do you know by any chance where can I find any other CSS selector for resonar? Element inspection is not very helpful as it doesn’t show me what selectors are available for each element. Or Im just too clumsly to find it out, which is very likely, being a noob in web development.

  • Unknown's avatar

    Super, glad that worked.

    If you “inspect” an element, generally all CSS related to it will be on the right side of the inspect panel. The further down you scroll on that list, the less specific the CSS rules are. I typically inspect an element and then scroll through the CSS to find the rule that has what I wish to change. Sometimes, depending on what I’m wanting to change, I have to create the CSS selector to use. As an example, if I was wanting to change something on the home page only, I would need to use the “home” CSS class that is set in the opening body HTML tag to precede the CSS selector. If I were wanting to change the color of the site description/tagline on the home page only, the CSS rule would look like this.

    .home .site-description {
        color: red;
    }

    The beauty of CSS, is if it doesn’t work, or breaks something when you put it in, you can simply delete it, or change the selector. It just takes some time and a bit of playing around with things, and of course we are always here to help, so don’t be afraid to ask.

  • Unknown's avatar

    great, thanks for the answer! Now that you speaking, how do I change color of the text for any other page than “home”? I assume .”other page name” will not work, right? In my example, I’d like to change the background color at “portfolio” page

  • Unknown's avatar

    ok, found it, using the .page-id solution! thanks, cause I know you were about to help me out ! :)

  • Unknown's avatar
  • The topic ‘Site description invisible in Resonar’ is closed to new replies.