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?
Page Titles Flush?
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Re: Page Titles Flush?
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
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
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Re: Page Titles Flush?
Hi!
In the CSS for http://www.bernsteinmedical.com/hairtra ... -Hair-Loss you have this css:
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
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;
}
If you replace that with "margin-left" it should work as you need it.
Best regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/