Tagged: sections
Hey advteksol,
Thanks for the screenshots. Could you post a link to where we can see the actual elements as well please?
Best regards,
Rikard
the p tag got a top/bottom margin of 0.85em
p {
margin: 0.85em 0;
}
even if you set this to Zero – there will be a litle distance.
But what if you place a separator/whitespace line above the image with a height of 0.85em ?
and on responsive case – that text under the image – you can set the whitespace to hide on smaller screens.
That solution sorta works, but it doesn’t seem like the best way. Here’s a page link you can view:
Hi,
You can target the paragraph which you are looking to align if you add a class to it:
<p class="my-class">Content</p>
Then add this CSS in Quick CSS:
p.my-class {
margin-top: 0;
}
Best regards,
Rikard
That doesn’t work – the top of the paragraph still doesn’t align with the image to the left.
Hi,
Did you add this in Quick CSS?
p.my-class {
margin-top: 0;
}
Best regards,
Rikard
Yes, as per your instructions.
Hi,
It’s not applying on your site. If you need further help, then include admin WordPress login details in private.
Best regards,
Rikard
Info below.
Hi,
You had invalid CSS in Quick CSS:
#top .social_bookmarks li {margin: 0 8px;};
I fixed that for you, and the CSS I sent is now applying.
Best regards,
Rikard
Thanks, it works!