0
I’m trying to put the company logo above all content at the moment the page is resized, but without success.
Logo call:
<a class="logo pull-left" href="index.php"> <img src="assets/images/logo-chipi.jpg" alt="" /> </a>
The code I have is this:
Page layout.css:
#header a.logo>img {
height:80px;
-webkit-transition: all .300s;
-moz-transition: all .300s;
-o-transition: all .300s;
transition: all .300s;
}
#header a.logo.logo-responsive>img {
height:100%; /* used on center - example: page-coming-soon-1.html */
}
A logo is getting like this:
The site can be seen here: Website in Development
