Hi,
The anchors in the lightbox are being targeted by this more specific rule.
Code:
.lightbox .box a { color: #000000;
font-family: "Book Antiqua",Palatino,"Times New Roman",Times,serif;
font-size: 25px;
font-weight: bold;
padding: 0 20px;
text-align: center;
text-decoration: none;
}
So to ensure your rules win out without using !important you would do this:
Code:
.lightbox .box a.websitelinks {
rules here etc .......
}
You can read up here on specificity here as it is an important concept (and took me a while to write
).
Bookmarks