Zen Cart Logo
Forums / Basic Configuration / Adjust sidebox title height

Adjust sidebox title height

Locked

Views: 1,025

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
31 Jan 2010, 2:46 PM
#1
avf avatar

avf

New Zenner

Join Date:
May 2008
Posts:
87
Plugin Contributions:
0

Adjust sidebox title height

Hi there,
I was looking to adjust the height of the sidebox title height so the background image which I created of height 30Px is clearly visible. now it is being cut off. Please advice
Thanks
AVF

31 Jan 2010, 6:21 PM
#2
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: Adjust sidebox title height

Where is your site?

31 Jan 2010, 6:29 PM
#3
schoolboy avatar

schoolboy

Totally Zenned

Join Date:
Jun 2005
Location:
Cumbria, UK
Posts:
10,327
Plugin Contributions:
0

Re: Adjust sidebox title height

If the image is GENERIC (applicable to all sidebox headers), then you can apply a declaration to the div CLASS.

.leftBoxHeading {height: 30px;}

If you want to apply it to specific sidebox headings, then you'll need to use each sidebox's SPECIFIC div ID...

#categoriesHeading  {height: 30px;}

Using the latter will allow you to style each sidebox header differently, as I am doing HERE in this demo site.

You are more than welcome to inspect my styelsheet.css for this site, to see how I have styled the sidebox headers.


31 Jan 2010, 8:15 PM
#4
avf avatar

avf

New Zenner

Join Date:
May 2008
Posts:
87
Plugin Contributions:
0

Re: Adjust sidebox title height

schoolboy:

If the image is GENERIC (applicable to all sidebox headers), then you can apply a declaration to the div CLASS.

.leftBoxHeading {height: 30px;}

> 
> 
> If you want to apply it to specific sidebox headings, then you'll need to use each sidebox's SPECIFIC div ID...
> 
> ```
#categoriesHeading  {height: 30px;}

Using the latter will allow you to style each sidebox header differently, as I am doing HERE in this demo site.

You are more than welcome to inspect my styelsheet.css for this site, to see how I have styled the sidebox headers.


great that worked like a charm !
Thank you so much for the prompt help and response