i need to have more horizontal space for insert my logo
is possible to move al the structure of theme down so i can insert the logo on the background image?
thanks
i need to have more horizontal space for insert my logo
is possible to move al the structure of theme down so i can insert the logo on the background image?
thanks
Change following code in style.css:
#wrapper_head{
position: relative;
z-index: 100;
overflow: visible;
height:100px;
}
You can set the value of height to any value you like - i.e. increase it.
The Dude
thanks for the answer, but aren't that i need
i need more space over the menĂ¹, so i can insert the logo like an image on the background
That's also possible by editing #wrapper_head - Just add a padding-top attribute like:
#wrapper_head{
position: relative;
z-index: 100;
overflow: visible;
padding-top:40px;
}
You can change the value of padding-top to any value you like.
The Dude
first problem solved
#wrapper_head{
position: relative;
z-index: 100;
overflow: visible;
margin-top:40px;
}
What's the other problem?
this is what I wanted to make
Nice website but as I can see you moved your menu down to insert your logo on the background. What's your second question. I read all posts of this thread and I couldn't found a second question :)
You must log in to post.