This should work for what you are trying to get I think
#site-generator > p {
margin-bottom: 0;
}
Thread Starter
Steven
(@stevenvdh)
Hey Brad,
Thanks for the help, that did the trick! you make my day 🙂
Maybe you know a solution for my last problem in that site?
I try to underline the email-links in pages and website-link in footer when hovering. But if I change settings in css /*links*/ it makes changes also for menu buttons above…
the underline should be in same color as text (so red for email-links in pages).
Hey happy to help and it was what you needed.
For the link situation, the following will underline all links under the menu area and footer.
#content a:hover {
text-decoration: underline !important;
color: #FF0000;
}
#colophon a:hover {
text-decoration: underline !important;
}
Thread Starter
Steven
(@stevenvdh)
Who is the man? Brad is the man! Thx for all the help m8 😉
hahah that’s ok, anytime! =)