Topic: Edit layour of article page
ARSNOnline
avatar
Softmore
Softmore
Posts: 57

Posted:
2.Jun 2006 - 21:57

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
avatar
Legend
Legend
Posts: 6594

Posted:
2.Jun 2006 - 22:54

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:

Code

h5
{
  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
avatar
Softmore
Softmore
Posts: 57

Posted:
5.Jun 2006 - 21:41

I'm honestly unsure how that got in there.

Which file do I edit to add a CSS wrap to it?


Thanks
markwest

Moderator
Moderator
Posts: 7720

Posted:
5.Jun 2006 - 22:12

mhalbrook

2. H5 For the title is kinda small, but that's mostly an asthetics thing

Code

h5
{
  font-weight:bold;
  margin:0;
  padding:0;
}



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