| Topic: | Edit layour of article page |
|---|---|
|
ARSNOnline
Softmore
Posts: 57 Posted: |
For example: http://arsnonline.co…le=article&sid=3021 Where do I look to remove the empty line (which isn't in the HTML generated from what I can tell) between the title and the date, as well as, the empty lines between the dates and the body of the article? Thanks edited by: mhalbrook, Jun 02, 2006 - 09:44 AM |
|
HalbrookTech
online Legend
Posts: 6594 Posted: |
1. You've got your CSS files loading multiple times 2. H5 For the title is kinda small, but that's mostly an asthetics thing 3. Instead of using H5, wrap the title in a tag with a class and use CSS to style it (This could likely fix the problem also) or at the very least, take out the bold stuff and add, to the style.css file: Codeh5 { font-weight:bold; margin:0; padding:0; } Your theme could really use some overhauls to make it standards compliant, removing styling info from the HTML and moving it where it should be to the CSS. edited by: mhalbrook, Jun 02, 2006 - 09:55 AM |
|
ARSNOnline
Softmore
Posts: 57 Posted: |
I'm honestly unsure how that got in there. Which file do I edit to add a CSS wrap to it? Thanks |
|
markwest
Moderator
Posts: 7720 Posted: |
mhalbrook2. H5 For the title is kinda small, but that's mostly an asthetics thing Michael, I don't necessarily agree - while h5 is to small by default it can be made whatever size you like using CSS. Just add a font-size: your size to the CSS definition. Where h5 is probably not suitable is that it won't give the necessary weighting the the article title in relation to rest of theme (from the search engine perspective). -Mark |