- This topic has 3 replies, 2 voices, and was last updated 9 years, 1 month ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.
Home › Community Forums › Epik Theme Support › Primary Sidebar Text Elements
how do I modify the text elements within the primary sidebar? I am using the Genesis Featured Widget Amplified widget to display featured content however the Titles of the individual posts that are featured are huge and there is a large gap between each. i would like them to look similar to the recent posts widget which is displayed further down the sidebar.
You can add this to your css to override it –
.featuredpost h2 a,
.featuredpage h2 a {
font-size: 18px;
}
and then you can change the size to whatever you need.
Thanks Wes, that worked great for the text size. How do I adjust the gap between the posts in the sidebar?
I think it’s probably showing up like that since you’re not using a featured image (you don’t have to if you don’t need it).
You can add this in your css –
.sidebar .featuredpost .entry,
.sidebar .featuredpage .entry {
padding: 0;
margin: 0;
}
That gets rid of the padding/margin at the top and bottom of the .entry
that is assigned for posts.