Additional description line in header for Broadsheet
-
I’m wondering if there is a code to add an additional line of text in the header for Broadsheet. I would need two lines of description under the title.
I appreciate any insight!
The blog I need help with is: (visible only to logged in users)
-
Hi there, first off, the WordPress footer credits have to remain visible and readable on all sites here at WordPress.com. It looks like the code you have is attempting to remove the “Top Categories” and “Top Tags” from the footer. If you replace the code you have with the following, it will remove those for you and keep the WordPress.com footer credits.
.footer-wrap ul { display: none; }We can use a pseudo selector to add additional text below the existing site description. You can edit the sample content I have in the content declaration as desired.
.masthead h2.description:after { content: "This is some additional text"; display: block; margin-top: 7px; }See what you think and let us know.
-
-
- The topic ‘Additional description line in header for Broadsheet’ is closed to new replies.