Making font red in block 10

Posted in: Newsmag
Post count: 15

Hi!

I’d like to make the font red for one of the headlines that I have in block ten.

PlanetFreeWill.com is my site.

You can see under featured stories block then and the head lines. How can I go about highlighting a headline/s red? Is it possible? If I place red font HTML for the headline in the post it only shows on the post page, not the front page of my site in block ten.

Post count: 6535

Hi

You can use a custom css to color the post tiles red, here is an example: http://screencast.com/t/Z3zzAGt4J

.td_block_10 .entry-title a{
color: red;
}

Thanks!

Post count: 15

Thanks! But I’d just like to make certain headlines in the block red, not all of them. How can I pinpoint certain headline to color red?

Post count: 6535

Hi

You can target a specif post using this css: http://screencast.com/t/gicO3nuUgD

.td_block_10 .td_module_9:nth-of-type(4) .td-module-title a {
color: red;
}

Thanks!

Post count: 15

Hey Andrei,

Is there a CSS editor you can recommend for WordPress? I can not find one that allows me to pinpoint a single headline and make it red. They targeting all the headlines at once or not allowing me to target the block for CSS editing.

Thanks!

Post count: 6535

Hi

Id does not matter the editor where you write the code as the browser will interpret it in the same way. The point is to target the exact element for which you want to change the style and for that you have to use the exact selectors.
Thanks!

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