Notice: This thread is over two years old; the information may be outdated. Please consider creating a new thread if you require free support. If you have an active SiteOrigin Premium license, you can email our premium support desk at [email protected].
I have been trying to edit my CSS stylesheet in Jetpack to center my logo and remove padding on logo masthead. Here’s what I put (I got this from looking at other similar threads on this forum):
/* Vantage Center Logo */
header#masthead hgroup .logo {
float: none !important;
}
header#masthead hgroup .logo img {
display: block;
margin: 0 auto;
}
/* Vantage remove all header padding */
header#masthead {
padding: 0 !important;
}
It doesn’t appear to be working. What am I doing wrong??
Hi Margaret
hgroup has changed from a tag to a class. Try putting a period in front of the word hgroup everywhere you see it there.
Before:
After