Isn’t there a custom walker, so that HTML works in menu items in general?
Hey Peter,
I change the code in line 38 but it didn´t work: Here
Regards,
Bruno
Hey Bruno!
You can use the “Forum” widget area if you want to display certain widgets on all forum pages. If you want to display a certain sidebar on all forum pages you need to modify sidebar.php. Open up the file and replace
if(!empty($the_id) && is_singular())
{
$custom_sidebar = get_post_meta($the_id, 'sidebar', true);
}
with
if(!empty($the_id) && is_singular())
{
$custom_sidebar = get_post_meta($the_id, 'sidebar', true);
}
else if(is_post_type_archive('forum') || is_singular(array('forum','topic','reply')))
{
$custom_sidebar = 'Forum';
}
Replace “Forum” with your custom sidebar name if you don’t want to use the default “Forum” widget area for the sidebar.
Regards,
Peter
Perfect answer thanks. I never thought of that. I will probably add it back in for continuity sake but thanks for the info
Hi!
You can add the .home selector:
.home .fixed_header #main {
padding-top: 0;
}
.home .header_bg {
opacity: .1;
filter: alpha(opacity=10);
}
Best regards,
Ismael
Hey!
Please add this on your custom.css or Quick CSS:
#header {
background-color: white;
}
#top .social_bookmarks li a {
display: initial\9;
}
Best regards,
Ismael
Hi!
You can do something like this. Edit the menu item then change the “Navigation Label” to something like this:
Online Print <span class="menu-second-line">and Content Writing</span>
Add this on your custom.css or Quick CSS:
.menu-second-line {
clear: both;
display: block;
position: relative;
top: -70px;
}
Best regards,
Ismael
Hi!
That ‘top alignment’ is the default CSS behavior for floated elements. Although it is possible, that would require a deep modification to the Theme, unfortunately i think that is out of the scope we can offer. If you really need it try hiring a freelancer for the job.
Cheers!
Josue
Hi!
It is disabled because most mobile browsers allow users to simply tap the menu bar at the top of the screen to scroll back to the top of a webpage, the scroll to top button is not necessary.
Cheers!
Ismael
This reply has been marked as private.
Hey!
Add this code to the Quick CSS:
#top #wrap_all ins:before {
display: none !important;
}
Cheers!
Josue
Currently when an image and a text element are on the same line the elements aligin to the top, what css can we add so that if the text takes up more vertical space than the image the image is vertically aligned to the text. Also vice versa when the text takes up vertically less space than the image the text is vertically aligned to the image.
Hi,
Whenever I embed a Google Ad to the theme, it places 2 or 3 black dots above the ad. How do I remove these? Rather annoying.
I found this CSS code from someone else requesting,
#top #wrap_all ins::before {
content: “”;
It works – partially. It leaves blank space and pushes the ad down, and when viewing on mobile – the dots reappear.
Hey!
1.) Edit the button layer then go to Attributes panel. Give it a unique id like “learn-more-button. Use it on your Quick CSS field.
#learn-more-button:hover {
color: blue;
background: white;
}
2.) Please give it a css selector id or class.
3.) You can use this for the black events button:
.avia-button.avia-icon_select-yes.avia-color-custom.avia-size-small.avia-position-center {
background-color: red;
border-color: red;
color: blue;
}
4.) Use this:
.main_color.iconbox_top .iconbox_icon:hover {
background-color: blue;
}
Best regards,
Ismael
Hey covaun!
You can use the Fullscreen Slider or the LayerSlider then add this on your custom.css or Quick CSS to move the content upwards.
.fixed_header #main {
padding-top: 0;
}
You can change the transparency of the header using this:
.header_bg {
opacity: .1;
filter: alpha(opacity=10);
}
Regards,
Ismael
Yes! Thank you so much! Been struggling with this one for quite some time. Thanks again for your help, much appreciated.
Cheers
it seems as if the html tags are stripped out in the menus, tried to have the menu items in two lines, too – without success.
Hi there,
I have attached a screenshot of what i am trying to do. I just want the menu titles to be on two lines are they are quite long titles.
http://bit.ly/19voS87

Cheers
great I will give that a try. But before I do, can you explain the benefit or reasoning for this native behavior. It is visible all the time otherwise, and this affects phones that are in landscape mode, which is of course why I want to change it.
But before I do I am curious about why it is intentionally turned off between that pixel size. Seems strange without know why.
Thanks! But how do you calculate the percentage of the left margin and the percentage of the top?
Hey!
It was made intentionally. But you can add following code to Quick CSS and display it between 480-768px as well
@media only screen and (max-width: 767px) and (min-width: 480px) {
.responsive #scroll-top-link {
display: block;
}}
Cheers!
Yigit
Hey!
For default logo with “non-fixed header with social icons and additional navigation” header type, custom css code would be
div .logo { left: 41%; }
.main_menu { left: 31%; margin-top: 40px; }
.main_menu .menu ul { top: 66%; }
Best regards,
Yigit
I’m trying to create a single image landing page with the menu and logo on top image the image. Like this: (link)
Can the be done?
Thanks
Can you explain me the basics? Logo = 270 x 130 px, header height from top to slider = 180 px. I have to adjust sizes myself, I have understanding of CSS. Menu width = max. 960 px.
Logo (centered)
–
Menu item Menu item Menu item Menu item Menu item Menu item Search (centered menu).
–
Slider
Hi finessecreative!
Please add following code to Quick CSS as well
@media only screen and (max-width: 480px) { .social_header .phone-info { top: 99px; font-size: 18px; left: 10px; }}
Best regards,
Yigit
Hey!
Can you post the link to your website as well? The link you provided in your other topic is still not Enfold
Cheers!
Yigit
Hey IcosMediaKunden!
Please add following code to Quick CSS in Enfold theme options under Styling tab
#top #menu-item-search.menu-item-search-dropdown>a:after { content: 'Suche'; }
Regards,
Yigit
This reply has been marked as private.