Jump to content

SWG

Members
  • Posts

    2
  • Joined

  • Last visited

Everything posted by SWG

  1. Thanks for the help guys.Setting the margin to 0px helped.Thanks for the tips in regards to DIV and SPAN, I'll have to read up on both since I'm not that experienced with either (could you tell? ;-)
  2. Hi.I'm trying to make a menu using <DIV> and stylesheets and have a problem removing the space bewteen the DIVs. I've put a top border on the content DIV and a bottom border on the titlebar DIV (green and red) to encase the space I'm talking about. When viewing the page in IE there is only the single space, but when viewing it in Firefox there is an additional space above the titlebar DIV, I'd like to remove both if possible. If you have any suggestions, help or another way of doing it, I'd appreciate it. <html><head><title>:: My startpage ::</title><style type="text/css"> body { background-color:#000; } .menu { position:absolute; top:10; left:10; width:20%; color:#000; background-color:#EEF; margin:1px; border:1px solid #fff; font-family:verdana; } .title_bar { background:url(title_bar.gif) repeat-x; border-bottom:10px solid #f00; color:#333; font-size:1.0em; font-weight:bold; font-variant:SMALL-CAPS; padding:3px 3px 3px 3px; } .content { background-color:#DDF; border-top:10px solid #0f0; padding:5px 5px 5px 5px; } .link { font-size:.8em; color:#333; text-decoration:none; } a:hover { color:#888; }</style></head><body><div class="menu"> <div> <h2 class="title_bar">News</h2> </div> <div class="content"> <a class="link" href="http://www.bt.dk">BT.dk</a><br> <a class="link" href="http://www.eb.dk">Ekstra Bladet</a> </div></div></body></html>
×
×
  • Create New...