PDA

View Full Version : title text being cut off


JEB
07-05-2007, 12:35 AM
I'm sure it's a quick CSS fix, but check this page in IE:

http://augustakorean.com/main/postcards/index.php?showimage=80

The title text is getting chopped off. Where can I make the adjustment to expand that 'box' so the text isn't chopped off? I figured one of you pros can tell me right where to look rather than me spending 2 days looking for the right setting!

T-I-A!

jaywilliams
07-05-2007, 03:05 AM
You'll need to edit your template css file.
Located in: templates/horizon/styles/horizon.css

Go to line #197 and you'll see this:

#header .inside h1 a {
float:right;
text-align:right;
color:#666;
padding-top:30px;
font-weight:bold;
display:block;
}

Replace that with this:

#header .inside h1 a {
float:right;
text-align:right;
color:#666;
padding-top: 30px;
font-weight:bold;
display:block;
height: 30px;
}

Notice the addition of "height: 30px;".

That should fix it.

JEB
07-05-2007, 12:39 PM
tried that...even tried changing that to 50px...no dice....what else can I check?

JEB
07-05-2007, 07:11 PM
Perhaps it's worth mentioning that the page works fine with FireFox...chopped off text issue is only present in IE

dakwegmo
07-05-2007, 07:34 PM
I just checked it and it seems to be working in IE6.

JEB
07-05-2007, 07:45 PM
well, now the client decided to just remove that part any way...oh well! Thanks for the help!