1- How can I change the color of the category label that appears under the title of each news item? I would like it to be red
2- Is it possible to align the menu links on the right side, next to the magnifying glass?
3- I have managed to modify the padding top of the cover, but in the “big grid” of the categories it keeps appearing below and I do not know how to modify it.
4- I tried to change the thickness of the font of the small thumbnails of the big grid 4 but in the mobile version they still appear with normal thickness.
Hi,
1. I believe you are referring to the category tags – http://prntscr.com/likf3f
Those have predefined colors, they could only be changed with CSS, not by a theme setting.
I could try and give you a solution, mention for which elements you want to change the color, which blocks and where. A link to the website/page would be helpful so I can test.
For example something like this would work for all the category tags at once
– https://www.screencast.com/t/kFYKB3RkS
.td-post-category {
background-color: blue;
color: black;
}
2. Maybe something like this – https://www.screencast.com/t/1IPmNEYmVI
The menu will start from the right if you enter this code in Theme panel->Custom CSS
@media (min-width: 767px) {
#td-header-menu .sf-menu li {
float: right;
margin-right: 14px;
}}
3. I could take a look, provide a link to where the grid is in your website and exact details about what you want to do.
4. Seems the theme will override the font weight on mobile, it will set a font-weight of 600, so the one from the theme panel will not apply anymore
– https://www.screencast.com/t/rhlVigkI6Hh
I will add this on our list of issues, I don’t think this is intended to happen. As a quick fix I could give you a code to make sure your desired font weight applies. For example
– https://www.screencast.com/t/t5hkyCyH
.td_block_big_grid_4 .td-small-thumb .entry-title {
font-weight: 100!important;
}
Let me know.
Thanks
Hi,
Please visit the site homepage: Softfully.com
You will find category below the title. If you hower the mouse on that category, as an example you will see the text “System Tools” in black color and that I want to replace with white color text.
Click here to see the example.
Thanks