Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS IE top: position not working! Re: IE top: position not working!

#74258
doobie
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;
}

#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