I have a lot of pages with the layout shown below.
I am using members plugin to hide/show text content in the top text area on the page, using this shortcode:
[nonmember]13-day trip[/nonmember]
[member]ECU-48 / 13-day FIT & Group trip[/member]
I see when I use that an space under the title, like the nonmember content hidden but still taking up space on the “member” site.
I also see this css in the dev tools:
p + h4 {
margin-top: 1.5em;
}
I’d like it to look like this on both member and nonmember pages: http://imgur.com/yZeOels
Can you help me with this?
thanks
n
Hi Munford!
I’m not really sure I understand. So this CSS is being inserted somewhere and is causing problems?
p + h4 {
margin-top: 1.5em;
}
Try adding this to your custom CSS to get rid of it.
p + h4 {
margin-top: 0px !important;
}
If that’s not what your trying to do then highlight in your screenshot your intentions so we can get a better idea.
Cheers!
Elliott
OK – I just wasn’t sure where that css was coming from – it was part of the theme.
thanks
n