- This topic has 1 reply, 2 voices, and was last updated 8 years, 11 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Home › Community Forums › Epik Theme Support › Moved: Reply To: Epik Header Image – for a non coder
Hi Wes,
I am having a similar problem on our site as well. http://barshieldapp.com Is there any way to remove the padding around the Header Right widget? We would like to tighten up the header to be slightly higher than the logo. I have made the code edits listed above, what am I missing?
Thanks,
Steve
I moved this to it’s own separate thread.
It looks like you’ve already made some edits to the right place on line 1975 in your css –
.header-image .site-header .widget-area {
padding: 0px 0;
padding: 2.5rem 0;
}
The reason you probably didn’t see an immediate change is because the rem has priority in most browsers, so if you change the px, you’ll need to change the rem as well. You could actually just remove the entire rem line if you want and just use the px since it will be easier and you won’t have to calculate the equivalent size in rem.