I'm looking to customize Afterburner to my personal needs. All is going well. I'm struggling though, with the navigation bar.
In there, there's the padding of the .gf-menu.l1>li>.item is currently set to padding: 0 25px
I would like to alter this padding value, but have no clue as where to find this.
Who can help me out?
When we release upgrades template files will change and you will have to reapply all your changes again (that's if you can remember where they all are). If you keep your changes in a separate Custom CSS file you'll have no issues upgrading.
thanks for pointing me in the right direction. Since LESS is new to me, I'll just dive into it. Looks great.
So I figured out the code I need to override is located in /templates/rt_afterburner2/less/menu.less
I thus created a file called menu-custom.less in the same location and it holds exactly 1 line: ul.gf-menu li a { padding: 0 13px; }
Am I understanding this correctly that the -custom file is not loaded after the regular file but before it? The opposite would seem te make sense as it would then respect the cascading principle of CSS. Or am I naive?