Space in between my images? WTF?!

liunx

Guest
My site, The Metroid Hall (<!-- m --><a class="postlink" href="http://www.metroidhall.com">http://www.metroidhall.com</a><!-- m -->) <br />
<br />
As you can see, the link buttons are screwed up. For some reason there's a space put in between veery single image, and I don't know why. Borders are gone, everything is laigned to the left...<br />
<br />
The only way I can fix it is using CSS relative positioning, but it then leaves a big gap at the bottom of my page, for some odd reason.<br />
<br />
Is there some HTML thing I'm missing that will take away that gap in between my buttons?<br />
<br />
Thanks.<!--content-->not if you just use the margins<br />
margin-left:0px; margin-right:0px; try it, if you have not already.<!--content-->If you want to stick to a table, you could place each button in a separate <td> with an assigned width.<br />
<br />
Cheers, Jochem :cool:<!--content-->ugh hybrid layouts... they are sooo crazy :rolleyes:. I know from expericne. When I made the layout for <!-- w --><a class="postlink" href="http://www.clanknights.vze.com">www.clanknights.vze.com</a><!-- w --> I did not know the ie box hacks so I made it a hybrid, what a pain in the butt. I am planning on redoing it in a week or two after some forum work.<!--content-->First off: Hybrid layouts? What are those?<br />
<br />
Second, where would I insert the margin code, just like..<br />
<br />
<img style="margin-left: 0px; margin-right: 0px;" ... ><br />
<br />
Right? Cause it didn't work.<!--content-->yes the margin stuff is right but put in<br />
position:relative in them as well, play with absolute too and see what you get, then post back if you have problems :D . By hybrid I mean you are using css for some position with tables for some positioning, for example my site, <!-- w --><a class="postlink" href="http://www.clanknights.vze.com">www.clanknights.vze.com</a><!-- w --> has the menus + header and footer positioned with css and all of the middle crap is sitting in tables because I did not know the box hacks to make it work properly with all css. Plus I used an iframe... big mistake.<!--content-->
 
Back
Top