i'm trying to work with the ad.novus http://drupal.org/project/ad_novus theme and having a bear of a time.

take a look - http://img.photobucket.com/albums/v249/kdpsports/FN/LeaderNet-SloganTest...

anyone have any ideas what i have to edit in the CSS to get it all to match? or is this even a CSS issue??

Comments

hollybeary’s picture

this could definitely be fixed with css. Are you familiar with firefox's addon firebug? I'd take a look at your code but it's kinda hard to bebug with just a pic of a page. If you could post a link to the actual page or one like it I could be more helpful

dc35’s picture

installing firebug right now! thanks for the idea. here is the link to the page - http://uuphost.org/leadernet/ thanks for any help you can offer!

dc35’s picture

OMG, firebug is the best thing ever! thank you sooo much for the recommendation!

hollybeary’s picture

Glad it helped! I can't live withoug firebug now! lol Looks like you've already figured out your site too! Looks better already.

dc35’s picture

yeah, it has! but i still can't figure out what is up with that white space at the bottom of the pages. ideas?

hollybeary’s picture

Yes, it's coming from your body class:

body {style.css (line 23)
-x-system-font:none;
background:#FFFFFF url(images/page-bg.png) repeat-x scroll 0pt 257px;
color:#333333;
font-family:Arial;
font-size:12px;
font-size-adjust:none;
font-stretch:normal;
font-style:normal;
font-variant:normal;
font-weight:normal;
line-height:normal;
margin:0pt 0pt 15px;
}

notice the background color is set to white, which is why that is showing white. The background image that's being displayed is set to only repeat horizontally (repeat-x); If you change that background color from #FFFFFF to #FDF5F5 it should get rid of that white space for ya.

dc35’s picture

thank you kindly!