- AuthorPosts
- November 2, 2020 at 2:22 pm #28763Steve MaddoxGuest
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?
November 2, 2020 at 2:32 pm #28786Jesse OwensKeymasterHi 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; }
November 2, 2020 at 4:18 pm #28788Steve MaddoxGuestJesse,
Thank you! That does it. Now, how can I scale the tagline down to an h6?
November 2, 2020 at 4:22 pm #28793Jesse OwensKeymasterHi 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; }
- AuthorPosts
- The topic ‘Show logo and tagline, remove CTA space’ is closed to new replies.