I've got a couple of problems, Using media queries I change the position and font size for mobile/tablet and desktop, the problem is, if your changing the window size the font size and a couple of social icons are taken out of place.
So mobile 320, tablet 768, desktop 960-1280+ are the sizes I've designed for.
@media only screen and (max-width: 320px) {
.footer-top ul.links li {
font-size: 0.60em;
}
ul.home-social {
width:73%;
margin-left:auto;
margin-right:auto;
}
}
This is the example of font change and social icon position, but if the window is resized by the user the icons are out of place. Any Idea's ? I just want it to flow well or is there no point?