Armadillo & CSS

Hey folks!
I’m pulling what’s left of my hair out here trying to add line height and font sizing to an armadillo solo content stack.
Can anyone see what I might be doing wrong please? http://test.lorrainemcreight.com/

I’ve added the CSS class “testimonial” to 2 areas with coloured backgrounds that use a google font to show off some testimonials. But no matter where I add

.armadilloContent .testimonial
{
line-height: 1.8 !important;
font-size: 1.50rem !important;
}

It’s not being styled.
I’ve added it to the custom CSS in Armadillo and in RW with and without the .armadilloContent just in case. But it’s not having it.

The Armadillo WYSIWYG editor does add <p> to normal text, so maybe it’s that. But even if it is, the browser should still pick up the !important and override it shouldn’t it?

Richard

I don’t see the CSS you added, but I don’t think it would work that way anyway. Since it’s solo content I’d put. it on the page CSS in RW.

.testimonial p {
    line-height: 1.8;
    font-size: 1.5rem;
}

That’s it Doug.
It just needed the p adding.
Still so much to learn. Thank you!

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.