View Single Post
04-25-2008, 07:16 PM
#5
solarisedesign is offline solarisedesign
Status: Junior Member
Join date: Apr 2008
Location: Edinburgh
Expertise:
Software:
 
Posts: 49
iTrader: 1 / 100%
 

solarisedesign is on a distinguished road

Send a message via MSN to solarisedesign

  Old

Absolute positioning can be very useful if used correctly. One thing I found which always seems to help is that you must ensure that the parent container of the absolutely positioned item has a position type of "relative" specified, so that the absolute item is anchored correctly

Where you have <div id="news">

try <div id="news" style="position:relative;">

(or stick that in the stylesheet for neatness)