Having a css challenge with the layout on ipad for this particular website:
When viewing on a browser, the social media icons align correctly to the right. However, on an iPad or iPhone, they are not aligned all the way to the right. Is there anything that can be done to rectify this issue?
.social-media {
float: right;
width: 98px;
margin-left: -180px !important;
}
In addition, here is some additional CSS code being used:
.site {
margin: 0 auto;
width: 1200px;
overflow: hidden;
}
body .site {
padding: 0 40px;
padding: 0 2.857142857rem;
margin-bottom: 48px;
margin-bottom: 3.428571429rem;
box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
}
Any suggestions or assistance would be greatly appreciated.
Thank you!