keon Posted September 13, 2019 Share Posted September 13, 2019 I have an option in my menu that I want to be styled differently to the other options. Is it possible to do this or can you only style all of the options as one? Link to comment
tuanphan Posted September 13, 2019 Share Posted September 13, 2019 Yes. You can with custom code. Share url to community check @keon Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
keon Posted September 13, 2019 Author Share Posted September 13, 2019 https://www.ridgemountpr.co.uk/workshop - I'd like this tab to be different Link to comment
jahanggir Posted September 13, 2019 Share Posted September 13, 2019 @keon, Yes, it's possible. You've to add use custom CSS. As an example to make the workshop button green you can use this CSS. a[href=/workshop].Header-nav-item {color: green !important; } Link to comment
tuanphan Posted September 13, 2019 Share Posted September 13, 2019 @keon use this code (add to Home > Design > Custom CSS) /* about us item */ a.Header-nav-item:nth-child(1) { color: #f1f23f !important; } /* services item */ a.Header-nav-item:nth-child(2) { color: #f1f23f !important; } /* projects item */ a.Header-nav-item:nth-child(3) { color: #f1f23f !important; } /* blog item */ a.Header-nav-item:nth-child(4) { color: #f1f23f !important; } /* contact item */ a.Header-nav-item:nth-child(5) { color: #f1f23f !important; } /* workshop item */ a.Header-nav-item:nth-child(6) { color: #f1f23f !important; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.