I have a Sharepoint site and I want to change the logo. I want to have one picture to the left and one to the right side. So I created and uploaded a doublelogo.css file in the site's assets, containing the following:
.s4-title {
background: url(PIC1.jpg), url(PIC2.jpg);
background-color:#FFCC00;
background-position: left, right;
background-repeat: no-repeat;
min-height:99px
}
after that i adds a reference to the <HEAD>
section of my site (v4.master file) which is :
<link rel="stylesheet" href="/siteassets/doublelogo.css" media="screen" />
opening my site with Chrome, it works as expected. Even when I tested the pictures by zooming in and out the browser window, the pics where steady left and right. OK
But the problem is whenever i open the site with my ie8 or ie9.
I read there is a workaround about putting one div into another but i need help on that because i dont really understand the procedure.
Can someone assist me ?
(i actually want to have two logo because when i had one, and changing the resolution of my computer, the logo was increasing or decreasing, something i do no want.)