srjacob Posted November 24, 2013 Share Posted November 24, 2013 (edited) Does anyone know how to change the background color on a CMS Block title bar? Edited November 25, 2013 by srjacob (see edit history) Link to comment Share on other sites More sharing options...
PascalVG Posted November 25, 2013 Share Posted November 25, 2013 Hi srjacob, Do you mean the title bar of the CMS links on the left/right column (in default theme)? This is done for all title bars together in themes/<your theme folder>/css/global.css .block .title_block, .block h4 { padding: 6px 11px; font-size: 12px; color: #fff; text-shadow: 0 1px 0 #000; text-transform: uppercase; background: #383838; <-- change to colour that you need. font-weight: bold; } If you really only want to change the title bar for just the cms block, then add the following code to your global.css file (at the end): .title_block { background: #99cc00; <-- change colour code as desired } Hope this is what you needed, otherwise please elaborate, pascal 1 Link to comment Share on other sites More sharing options...
srjacob Posted November 25, 2013 Author Share Posted November 25, 2013 That worked great. Thank you very much. Steve 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