Home › Forums › CSS › IE top: position not working! › Re: IE top: position not working!
April 16, 2010 at 1:09 pm
#74258
Member
Expo,
Try setting the positioning context for the social media links. That way you can absolutely position the icons within that context:
Code:
ul#top_nav li {
position: relative;
}
position: relative;
}
#social_media… {
top: -15px; // or whatever
}
Looks like you might need an IE specific stylesheet to get it right everywhere, though.
Hope this helps.
-Jacob