Just below main-menu ,there is a link for post – for example
home > skin care > chocolate face pack
How can i change the font ,color,hover color for this link.
For more details please visit this link and check just below main-menu or above article headline
http://www.thebeautymadness.com/5-chocolate-face-packs-that-you-must-try/
Thanks a lot
Hi,
There is an option in Theme Panel to change font for breadcrumbs: http://screencast.com/t/hMnYX0btbDUB
The color and hover color can be changed via custom css in Theme Panel > Custom Css: http://screencast.com/t/rDUqYnHW
.entry-crumbs span, .entry-crumbs .td-bread-sep {
color: red;
}
.entry-crumbs span:hover {
color: blue !important;
}
Hope this helps!
Thanks a lot .
Please also let me know how to change default color for texts with link
for example if you check below post link
http://www.thebeautymadness.com/lemon-face-masks-for-pimples-acne-scars-dark-marks-fairness/
and find for below text
DIY Lemon Face Mask for Dark Marks and Dark Spots
The text “Dark Spot” color is grey, I would like to change it to some other color.
Please suggest.
Hi,
The link takes the theme accent color from Theme Panel: http://screencast.com/t/ueN9xVPRQy7n – http://screencast.com/t/1bGTyix3mH
Please try this custom css in Theme Panel > Custom Css: http://screencast.com/t/coYYmwAZaOXA
.td-post-content a {
color: red;
}
Thanks!
Thanks a lot!
When clicked on category-> A list of posts are displayed with excerpts
For example click – http://www.thebeautymadness.com/category/beauty-and-makeup/
Please let me how to change hover color for the articles title.
Thank you
Hi,
You can try this custom css to change hover color for title in category pages: http://screencast.com/t/5MD8yC7z6ZsW
.category .td_module_wrap:hover .entry-title a {
color: red;
}
Thanks!