johnchristy Posted January 31, 2013 Share Posted January 31, 2013 (edited) hi i need to change the color of the header.. i changed the left menu header bg color from global.css /* BLOCK .block ******************************************************************************** */ .block {margin-bottom:20px} #footer .block {margin-bottom:0} .block .title_block, .block h4 { padding:6px 11px; font-size:12px; color:#fff; text-shadow:0 1px 0 #000; text-transform:uppercase; background:#383838; text-align:left; but where can i find the header block bg color css? John Edited January 31, 2013 by johnchristy (see edit history) Link to comment Share on other sites More sharing options...
PascalVG Posted February 1, 2013 Share Posted February 1, 2013 Seems to be in (yourtheme)/header.tpl Find < div id="header" class="grid_9 alpha omega"... and add here style="background-color: red" inside this div tag < div id="header" class="grid_9 alpha omega" style="background-color: red" > (If you don't like red, you can choose any other colour ;-) ) Pascal Link to comment Share on other sites More sharing options...
johnchristy Posted February 1, 2013 Author Share Posted February 1, 2013 no. its not the correct one. i need to change only the header block (menubar) home menu etc. Link to comment Share on other sites More sharing options...
PascalVG Posted February 1, 2013 Share Posted February 1, 2013 Ah, the menu. Copy the file /modules/topblockmenu/blocktopmenu.tpl to /themes/(yourtheme)/modules/blocktopmenu.blocktopmenu.tpl (N.B. create (yourtheme)/modules folder and (yourtheme)/modules/blocktopmenu folder if they not exist yet) Then edit this new file (it overrides the original one): find the < ul class="sf-menu clearfix" > tag and add like before the: style="background-color: green" inside this ul tag: < ul class="sf-menu clearfix" style="background-color: green" > Hope I understood your wish well this time. Pascal. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now