Hello, I am at a loss trying to find the line of code to change the (left side blocks "headers"). At present its gray, where do I make this change ? CSS ? Or .tpl file ? And if you could help me to make this simple enough change, I'd be the happiest man using your theme. :D Thanks

CommentFileSizeAuthor
sample header.png36.83 KBturbocharge
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

mvw’s picture

With Firebug (the plug-in for Firefox), you can select the header area, and then you see that the CSS in style.css contains this:

#sidebar-left .block h1 {
background:none repeat scroll 0 0 #BEBEBE;
color:#FFFFFF;
font-size:136%;
margin:0;
padding-left:15px;
}

You can overrule the color #BEBEBE by adding this to a file "custom.css" (as described in the README.txt supplied with the theme), e.g. for a purple color:

#sidebar-left .block h1 {
background:none repeat scroll 0 0 #7777BE;
}

Good luck!

hswong3i’s picture

Version: 6.x-1.4 » 7.x-3.0-beta1
Assigned: Unassigned » hswong3i
Status: Active » Closed (won't fix)

Ooops this left sidebar block styling had been removed within latest 6.x-2.x-dev, which is completely revamp as zen-6.x-2.x-dev subtheme. So, issue will now mark as won't fix.