Hi, I’m working on a site with Articles, News and Author Columns. For News and Articles I have selected the style 3 post template, but for Author Columns I want to select the style 12, because I do not need a great image and I want a different style. My problem is with the color of Title font. For the style 3 template I assigned white color for font, because the words are above the image, but in style 12 the white title font is invisible because it do not have a colored image under. With style 5 for author columns I will have the same problem. I tried to set a custom css in author’s columns for entry-title color font but this is not possible. Is there any way to set a different font for titles in different categories or in different templates? Maybe to set black font color for titles in style 12 template?
Thanks!
Hi
For example I have the style3 for news with white title fonts, you can see it here: http://chilecientifico.cl/chilecientifico/2017/03/24/en-una-decada-chile-tendra-el-70-de-la-capacidad-astronomica-mundial/
but in author columns I have the style 12 and the color of title is also white: http://chilecientifico.cl/chilecientifico/2017/03/22/y-tu-cuantas-publicaciones-tienes/
I need this color title in #343d46 or in black.
I don’t know how to assign this color to .td-pb-span12, I tried in many ways with css.
I can’t send screenshots through this forum…
Hello Sebastian Escobar,
If you want to change the color of these elements, you should use a bit of CSS code to do that. Try the code below and place it in Theme panel->Custom CSS area.
The code is ->
.td-post-template-3 .td-post-title .entry-title{
color:#343d46!important;
}
.td-post-template-3 .td-post-title .entry-title span{
color:#343d46!important;
}
The result is here -> https://www.screencast.com/t/gQnUvIQS0el
If is not what you mean, provide some suggestive screenshots where you should show me where exactly you want to change the color.
Thanks for the message!