Ajax menu colors and size

Posted in: Newspaper
Post count: 72

On the homepage of SnowsBest.com I have sub categories in the Ajax menu. They are currently a soft grey and in lower case. Is there a way to make them in a darker grey or black?

Also, if I wanted them to be in all capitals, how would I do that?

Post count: 20688

Hi,

The sub-categories in the mega menu can be customized in terms of font properties, in the theme panel
https://www.screencast.com/t/LEMr3f2e8wn4
If you want them to be uppercase or different, the setting is in the transform column. The text color can be changed as well, here
https://www.screencast.com/t/9lfRpIMGUBX

Thanks

Post count: 72

Thanks you Simion, but I want to change them in the block menus, not mega menus, I didn’t explain myself well. I want to change them in Block 3 and Block 5 for instance. They are soft grey and in lower case in the Ajax menu on each block on the home page, I want to make them black and in caps. Any suggestions?

Post count: 20688

Hi,

Sorry for misunderstanding. For those elements there is no theme panel setting at the moment. However a code like this will make all the ajax filter items as you like, for all the blocks
https://www.screencast.com/t/MrczIKOn

.td-subcat-filter .td-subcat-list a {
color: black;
text-transform: uppercase;
}

If you want only blocks 3 and 5 to be affected it would be like this

.td_block_3 .td-subcat-filter .td-subcat-list a,
.td_block_5 .td-subcat-filter .td-subcat-list a {
color: black;
text-transform: uppercase;
}

Please let me know if the code needs modifications, or it is not what you wanted.

Thanks

Post count: 72

Thank you so much, that worked perfectly.

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