Page 1 of 1

Page Titles Flush?

Posted: Thu Apr 05, 2007 10:27 pm
by DMotel
I have a category that is quite long. When you see an entry under that category, it pushes the title onto the second line but not justified under the first line, it is out dented and does not look right.
Is there a way to make the second line start right under the 1st line in a category heading?

Re: Page Titles Flush?

Posted: Thu Apr 05, 2007 10:41 pm
by garvinhicking
Hi!

An URL to look at this problem might help people to be able to help you.

I bet this is a CSS problem where you need to change the padding/margin values...but depending on the layout that might not be too easy.

Best regards,
Garvin

Re: Page Titles Flush?

Posted: Tue Apr 10, 2007 11:31 am
by garvinhicking
Hi!

In the CSS for http://www.bernsteinmedical.com/hairtra ... -Hair-Loss you have this css:

Code: Select all

.CategoryTitlesLook h1 {
	color: #666666;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 18px;
	text-indent: 15px;
	margin-top: 20px;
}
Because of the "text-indent" specification you have that problem.

If you replace that with "margin-left" it should work as you need it.

Best regards,
Garvin

Posted: Mon Apr 16, 2007 7:34 pm
by DMotel
Thanks!