Can't style the font in

Posted in: Newspaper
Post count: 29

Just purchased newspaper theme, installed Global Medicine demo on my dev site to play around with.

One thing I was trying to tweak: the post titles showing inside the “Big Grid 7” elements aren’t very clear overlaid on my light colored thumbnails. I wanted to add a shadow to the font to make it more legible, using the following CSS, but it would not work.

.td_block_big_grid_7 .entry-title {
text-shadow: 2px 2px 4px rgb(0,0,0)!important;
}

Please advise, thanks

Post count: 22421

Hi,

Try the code like so:

.td_block_big_grid_7 .entry-title{
background-color:rgba(0, 0, 0, 0.31);
}

http://screencast.com/t/bAKGCcmFuz1k

Or if you just want the text shadow, you need to apply it to the a element:
.td_block_big_grid_7 .entry-title a{
text-shadow: 2px 2px 4px rgb(0,0,0)!important;
}

Thanks.

Post count: 29

Yes thanks worked. The a element was staring me in the face and I didn’t see it.
I used both suggestions and it worked out really well. Thanks.

Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newspaper’ is closed to new topics and replies.