Dear Kriesi Team,
First of all I want to thank you again for this awesome template. Avia framework made my job a lot more easy when I am to creating a responsive website with a backend what anyone can edit.
Your forums are also very usefull. I have found the answers for 90% of my quesions but now I am stuck with something.
I am working on this site at the moment:
http://hrdemo.web-developer.hu/
I have managed to change the hoover background but i have problems with te left padding of the main elements of the menu.
According to firebug this code:
{
cursor: default;
padding-left: 0;
padding-right: 33px;
}
is generated inline into the a tag of the menu item. I want to orverride the left padding so the changed background on hoover will look a bit better. I want the text to keep 15 px from the left edge of the container.
In the end I want to make the menu something, like on this site:
http://www.sony.com/
Can you give me a tip how to do this please? I cant find the php what generates the menu.
Also i am curious if it is possible to create content boxes like 2/5 or 3/5 size.
For an example I want something like this: 1/5 2/5 1/5 1/5.
I am looking forward to your reply!
Regards,
Tom
Hey Tom!
Try adding this code to the Quick CSS:
#top .main_menu ul:first-child > li > a {
padding: 0 15px 0 15px !important;
}
Cheers!
Josue
Hi Josue,
Thank you for your reply. Your code solved it.