Hello,
I would like to get a second image on the right of the header. Anyone here who knows what I have to put into the custom.css.
Regards
Edin
Hello,
I would like to get a second image on the right of the header. Anyone here who knows what I have to put into the custom.css.
Regards
Edin
Hi edin,
The right part of the header contains main menu. Do you want the second image to be put below the main menu?
Regards,
Ismael
Hi,
i forgot to mention that the main menu is already under the logo. My custom.css looks like this:
#megaMenu{
position:absolute;
right:0;
top:90px;
}
#top .bg-logo, #top .bg-logo a{
height:120px;
width:290px;
}
The second logo should be on the opposite site (right).
Is it allowed to write here in german?
Regards
Edin
Hello,
I think this should work. Find this code on your header.php.
<?php
//display slideshow big if one is available
Then above that place a new div.
<div class="new-logo"><img src="..images/new-logo.png /></div>
You can style this on your custom.css. I think the appropriate style will be.
.new-logo {
position: absolute;
right: 100px;
top: 20px;
}
I don't know the size of your new image. I guess you need to play around with this one.
Regards,
Ismael
You must log in to post.