Hi, having a hard time getting the formatting right on the H3 tag. It has almost no padding or margin top and bottom and makes for a cluttered lookin layout.
Can you have a look and let me know if this is a problem with my theme in particular and if not, what would be a solution?
I’ve been playing with this css, but it effects all H3’s so it makes h3’s that do not follow a
THanks guys!
/* fix space above h3’s */
.entry-content-wrapper ul {padding-bottom: 20px!important;}
Hey bodhimcgee!
Try this CSS out.
#post_profileTab h3 {
margin-bottom: 20px;
margin-top: 20px;
}
Also, since it looks like your adding the H3’s in manually you can give them a class and style them on the class like so.
<h3 class = "custom_h3">Some text</h3>
And use this CSS to style them.
.custom_h3 { margin-bottom: 20px; }
Cheers!
Elliott