Hi,
I'm making a page at http://www.nubornis.com/joomla and at the bottom of the front page I have two sections called latest blogs and latest news, the code for both is pretty similar and looks like this (the CSS will eventually be moved to the CSS file of course!)...
<?php mosLoadModules ( 'user6', -2); ?>
In firefox the 'latest blogs' image is displayed at the top of the box and over the border which is how I want it, if viewed in IE 6 the browser cuts off half the image because it goes outside its containing div. How do I get IE 6 to display the image the same way FF does?
Thanks for your help
Tom
They should work /stack over
They should work /stack over the div if you add position:relative to the image. You may want to add some classes in there somewhere to aid targeting specific elements though.
Suppose you could also set the images as position absolute if their parent was positioned relative then just give them a negative top offset.
Hugo.
Brilliant I've stuck the
Brilliant I've stuck the position:relative in there and it works a treat. Cheers Hugo.
Good stuff.
Good stuff.