Hi!
Im again – i tested your code Yigit :)
Here the result: http://www.pizzeriainnsbruck.at/wp-content/uploads/diverse-daten/image-2.png
1. Is it possible to see the shadow also on the top of the first row?
2. As you can see, the second row had no margin on the left side and therefore the shadow isnt visible – any idea?
3. Can you provide me the place and how i can put the FB LIKE BUTTON above the title? like here: http://pizzeriainnsbruck.at/wp-content/uploads/diverse-daten/image-1.jpg
Thank you so much – best
I added that to the custom css but it doesn’t do the trick. Does it need to apply to the social portion as well? That is what ultimately is at the very top of the page.
Hi Katharina,
Please add this code to Quick CSS section in Enfold theme options page under Styling
#top .mega_menu_title img { width: auto; }
Regards,
Yigit
Hi xyzb,
Unfortunately it would require a bit more in depth changes to separate out the nav by itself but you can request the additional option for a future update in the feature request topic here: https://kriesi.at/support/topic/enfold-feature-requests
Regards,
Devin
Hi Josue,
Everything is working except the little line (bar) between the words LOGIN | REGISTRAR, I couldn´t fix it. I´ve tried placing between the two links but it didn´t worked.
Thanks,
Fabiana.
Hi,
Please add following code to custom.css file or into Quick CSS section that’s in Enfold theme options page under Styling
#top .main_menu .menu li a:hover { background-color: red; color: white; }
span.avia-menu-fx { display: none; }
#top .header_color .main_menu .menu ul li>a:hover { color: white; }
Regards,
Yigit
Hi there,
it’s all in the title – I have a mega menu with images. Fine on desktop version. But the responsive version of the slide-out menu shows these imgs even larger as they are. Where can I adjust this img size for the slide-out menu? http://tinyurl.com/mr7p7yv
Thanks in advance, katharina
Yes, I have tested it in an actual IE8 browser, as well as in IE8 browser mode with cache cleared on multiple computers. Would someone be able to log into the backend and try to fix the issue themselves. Also, need to fix the issue with the top menu overlapping.
No, by default the arrow navigation buttons (left/right side of the screen) will always link to the next or previous post without checking the category. The posts are selected by date. If you want to limit the navigation to the current category you can use following code;
add_filter('avia_post_nav_categories', 'use_same_category_filter');
function use_same_category_filter($same_category)
{
$same_category = true;
return $same_category;
}
– insert it at the bottom of functions.php. This code will only work for standard posts and it doesn’t support portfolio entries/post at the moment. This is indeed a bug in the software but not in our “software” or theme code but it’s a wordpress core bug/limitation: https://kriesi.at/support/topic/is-it-possible-to-create-two-completely-seperate-portfolios#post-108132
https://kriesi.at/support/topic/icon-box-icon-link
I found the code here. Question for you – where in the code do I put the link?
Hi,
For me with this code everything looks fine and menu does not move to left when i scroll down. So please try adding this code and let me know if it does not work for you.
div.main_menu { right: 25%; top: 47%; padding-top: 10px; }
div#ticker.liveTicker { padding-top: 11px }
Regards,
Yigit
Hi,
To hide sale icon please add following code to custom.css file or to Quick CSS in Enfold theme options page under Styling
#top .main_color .onsale { display:none; }
Regards,
Yigit
Hi Doremus,
In WordPress theme directory please go to Enfold > Js and open avia.js file and find following code in line 87
switchWidth = 767;
and change it to
switchWidth = 915;
You can adjust the value by changing ‘915’.
P.S.: Your website looks very nice. Definitely deserves to be showcased in this topic https://kriesi.at/support/topic/enfold-showcase
Regards,
Yigit
Olá Josue,
Thank you very much again.
Best regards,
Fabiana.
I’d like to modify Iconbox.
Now iconbox has two option: with icon on top, with icon on left.
I’d like to have a third option: no-icon, that allows me to remove the icon (I know that iconbox without icon is a nonsense but I’ve seen that Iconbox is the best base for the result I wanna reach) and then I’ll add the possibility to choose a background color for the box and a font color.
I tried to modify iconbox.php file in themesenfoldconfig-templatebuilderavia-shortcodes : I added the third option and modified the outputted DIV as I want.
It works … Now I’m trying to add the other two options (font color and background) but I see no results… The impression is that the server is using a version of iconbox.php file cached somewehere…. I tried everything, deleting iconbox.php from the server, changing the theme and then reapplying Enfold, but nothing worked …. how can I force the server to reload the file modified? (and why the first modifications had been applied?)
Thank you all
Mac
Hey!
See: https://kriesi.at/support/topic/error-message-at-wordpress-login – probably a whitespace character at the end of a php file triggers this warning.
Best regards,
Peter
Hi Josue,
thanks for coming back on my issue with the responsive menu. I disabled the jquery updater, but the only effect is the layer stops working, saying there is an old jquery at work. But no responsive menu does not show up anyway.
Any other idea is welcome, since we do have about 40% mobile visitors, this one is vital.
Thank you.
Sebastian.
I’ve added a form (using LeadDoubler.com) on http://www.erstatningsgruppen.dk. I’ve positioned this on top of the slider area using margin-top:-500px.
This is OK on desktop display, but breaks on smaller screens.
Now I need your help in how to insert an iframe into the header area in a way that makes it work on a mobile.
Morten
For now a quick fix is to rename the menu. Just use latin characters for the menu name and re-save it. Eg call the main menu “Main Menu” and the top menu “Sub Menu” and it should work. I’ll look into it and try to find a fix for the next update.
Hi Faye,
That happens because WordPress strips all the attributes you pass to the URL.
Regards,
Josue
Hey,
You can add this on your custom.css or Quick CSS:
@media only screen and (max-width: 989px) and (min-width: 768px) {
.responsive .main_menu ul:first-child > li > a {
padding: 0 8px;
font-size: 12px;
}
.logo.bg-logo {
width: 200px;
margin-top: 20px;
}
}
You can adjust the size of the logo.
Regards,
Ismael
Hey,
You can use this:
.nonfixed_header .header_bg, #header_meta, #header {
-webkit-border-top-right-radius: 10px;
-webkit-border-top-left-radius: 10px;
-moz-border-radius-topright: 10px;
-moz-border-radius-topleft: 10px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
Regards,
Ismael
I was able to figure out (thanks to forum search) the custom CSS to give rounder corners to the bottom of my Enfold website but I’m not having much luck finding the right code to do that on the top.
Here’s what worked on the bottom:
#socket {
-webkit-border-bottom-right-radius: 10px;
-webkit-border-bottom-left-radius: 10px;
-moz-border-radius-bottomright: 10px;
-moz-border-radius-bottomleft: 10px;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
}
Can someone help me with the same idea for the top area? I have a boxed layout.
Here’s a link to the test site:
http://tgdigitalservices.com/o1/
Thanks!
Oi Fabiana,
I just added the links, here’s what you need to edit if it breaks again:

Regards,
Josue