Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #28763
    Steve Maddox
    Guest

    We are using the Wedge theme and have uploaded a logo and out tag line. In the top menu bar, the logo appears, but the tag line doesn’t. In the source code, it lists “<h3 class=”site-description site-description invisible”>DEVELOPING LIFE SKILLS THROUGH AN AFFINITY FOR THE SEA</h3>” How do we change this to visible?

    We also removed the “Call to Action” widget and now have a blank bar across the page (as a place holder for the widget?) How do we remove this space?

    #28786
    Jesse Owens
    Keymaster

    Hi Steve-

    You can fix both of these issues with a little bit of custom CSS. Navigate to Customize > Advanced > Custom JS & CSS and paste the following rules into your Custom Theme CSS:

    div#content {
        padding-top: 0px;
    }
    .entry-content {
        margin-top: 0px;
    }
    h3.site-description.site-description.invisible {
        visibility: visible;
    }
    
    #28788
    Steve Maddox
    Guest

    Jesse,

    Thank you! That does it. Now, how can I scale the tagline down to an h6?

    #28793
    Jesse Owens
    Keymaster

    Hi Steve-

    Changing it to an actual h6 would require using either JavaScript or changing the theme itself, which aren’t ideal solutions for that.

    That said, you can match the style and font-size of an h6 by changing that last rule a little:

    h3.site-description.site-description.invisible {
        visibility: visible;
        font-size: 17px;
    }
Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Show logo and tagline, remove CTA space’ is closed to new replies.