Hey,
i’d like to put an image at the right of the navigation before “search”.
How can i do that ?
Best, AB
Hi anma!
Please add following code to Quick CSS in Enfold theme options under General Styling tab and change the image link to yours
.main_menu {
background-image: url(https://upload.wikimedia.org/wikipedia/commons/thumb/a/ac/No_image_available.svg/100px-No_image_available.svg.png);
background-repeat: no-repeat;
}
If this is not who would like it to look, please post a screenshot
Best regards,
Yigit
Hi Yigit,
So i tried your code it works but i’d like to make it clickable and put it on the other side.
Here is a screen : http://i.imgur.com/OTK2GcT.png?1
Thanks, AB
Hi!
Please add following code to Functions.php file in Appearance > Editor
` add_action('ava_after_main_menu','logo_text'); function logo_text() { echo "<div class='menu-text'><a href='http://kriesi.at'><img src='linktoyourimage.jp' /></a></div>"; } `
And you can change its styling using .menu-text selector in Quick CSS field
Regards,
Yigit
Hi!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.menu-text {
position: relative;
top: -30px;
height: 30px;
}
Best regards,
Yigit
Hi,
thank you for your answer, it work properly but i still need a little bit of your help.
The image is not clickable, i don’t know why, any ideas ?
Best,
AB
Hi!
Please add following code to Quick CSS as well
.menu-text { z-index: 999; }
Best regards,
Yigit
Great thanks again Yigit !
Best,
AB