Hello,
i have 2 questions:
My website is http://www.good-life.ro (password: goodlife!23) it’s password protected until i get it online.
1) In the footer i have a module that has the titles same color as the background. I don’t know where to change that color.
2) In the homepage i have the module called GURMAND. I have the main article CELE MAI BUNE RESTAURANTE… and on the right i have 4 other restaurants: The artis, yuki, casa di david, kunnai. Is there a way to bold only the name of the restaurant?
thank you
Hi
1. You can change the block title color from footer in theme panel > theme color > footer: http://screencast.com/t/Vy4VBClyE – http://screencast.com/t/nuOeoAcG
2. Unfortunately there is no way to bold only the restaurant name. The function which generate the article titles for blocks returns a single string. To be able to apply a different property for the restaurant name, this should be added as a value which can be manipulated inside the function. The function which must be modified to achieve that is located in td_module.php: http://screencast.com/t/96vlbbHYjr You can give it a try if you want but this is a complex task and if you’re not aware of the steps you need to take in this regard please consider hiring a developer or a freelancer to do this for you.
Thanks!
-
This reply was modified 10 years by
Andrei L..
Thank you for your answers Andrei but you didn’t understand my firs question.
In the footer i have those widgets but i have a problem with the title color from the articles showing in the widget.
if you look closer you will see that i have the pictures and the date, but not article title. That’s because the article title’s color is the same as the background and only when you put your mouse over it turns to red.
Hi
Sorry for misunderstanding you.
To change the color for articles tile try this css in theme panel > custom css; http://screencast.com/t/tJwET3UN
.td-footer-container .td-module-title a {
color: #F2F2F2;
}
Thanks!