Hi!
1.) Instead of the br tag, try to use a span tag. More info here: https://kriesi.at/support/topic/word-wrap-in-menu-or-have-the-menu-on-two-lines/#post-283385
3.) Edit the “Blog Multi Author” page, remove “Blog” as parent page.
If possible, in the future, please create a separate thread for each inquiry. Thank you!
Best regards,
Ismael
Hi,
Try adding this code in your Quick CSS (located in Enfold > General Styling):
@media only screen and (max-width:990px) and (min-width:768px) {
.responsive #top #wrap_all .container { width: 85%; max-width: 85%; margin: 0 auto; padding-left:0; padding-right:0; float:none;}
.responsive #top .av_header_transparency.av_alternate_logo_active .logo a > img{opacity:1}
.responsive #top .av_header_transparency .logo img.alternate{display:none;}
.responsive #top #wrap_all #header {position: relative; width:100%; float:none; height:auto; margin:0 !important; opacity: 1;}
.responsive #top #main {padding-top:0 !important; margin:0;}
.responsive #top #main .container_wrap:first-child{ border-top:none; }
.responsive.html_header_top.html_logo_center .logo { left: 0%; -webkit-transform: translate(0%, 0); -ms-transform: translate(0%, 0); transform: translate(0%, 0); margin:0; }
.responsive .phone-info{float:none; width:100%; clear:both; text-align: center;}
.responsive .phone-info span{margin:0;padding:0; border:none;}
.responsive.html_header_top #header_main .social_bookmarks ,
.responsive.html_top_nav_header #top .social_bookmarks { right: 50px; width:auto; margin-top:-16px; }
.responsive .main_menu{display: none;}
.responsive #top .logo{position: static; display:table; height:80px !important; float:none; padding:0; border:none; width:80%; }
.responsive .logo a{display:table-cell; vertical-align: middle;}
.responsive .logo img{height:auto !important; width:auto; max-width: 100%; display: block; max-height: 80px;}
.responsive #header_main .container{height:auto !important; }
.responsive #top .header_bg { opacity: 1; filter: alpha(opacity=1); }
.responsive.social_header .phone-info {text-align: center; float:none; clear:both; margin:0; padding:0;}
.responsive.social_header .phone-info span{border:none; width:100%; text-align: center; float:none; clear:both; margin:0; padding:0;}
.responsive #header_meta .social_bookmarks li{ border-style:solid; border-width:1px; margin-bottom:-1px; margin-left:-1px;}
.responsive #top #header_meta .social_bookmarks li:last-child{border-right-style: solid; border-right-width: 1px;}
.responsive #header .sub_menu, .responsive #header_meta .sub_menu>ul{float:none; width:100%; text-align: center; margin:0 auto; position: static;}
.responsive #header .social_bookmarks{padding-bottom:2px; width:100%; text-align: center; height:auto; line-height: 0.8em; margin:0;}
.responsive #header_meta .sub_menu>ul>li{float:none; display: inline-block; padding: 0 10px;}
.responsive #header .social_bookmarks li{float:none; display: inline-block;}
.responsive.bottom_nav_header #header_main .social_bookmarks{ position: relative; top: 0; right: 0; margin: 10px auto; clear:both;}
.responsive.bottom_nav_header.social_header .main_menu>div{height:auto;}
.responsive .logo img{margin:0;}
.responsive.html_header_sidebar #top #header .social_bookmarks{display:none;}
.responsive body.boxed#top, .responsive.html_boxed.html_header_sticky #top #header{max-width: 100%;}
.responsive #top #wrap_all .av_header_transparency .main_menu ul:first-child > li > a,
.responsive #top #wrap_all .av_header_transparency .sub_menu > ul > li > a,
.responsive #top .av_header_transparency #header_main_alternate,
.responsive .av_header_transparency #header_main .social_bookmarks li a,
.responsive #top #wrap_all .av_header_transparency .phone-info.with_nav span,
.responsive #top .av_header_transparency #header_meta,
.responsive #top .av_header_transparency #header_meta li,
.responsive #top #header_meta .social_bookmarks li a{ color:inherit; border-color: inherit; background: inherit;}
.responsive.html_top_nav_header .av-logo-container{height:auto;}
.responsive.html_top_nav_header .av-section-bottom-logo{border-bottom-style: solid; border-bottom-width: 1px;}
#top #header_main { background:#fff; position: fixed; }
#top #advanced_menu_toggle { display: block; }
}
Let us know if it works :)
Best regards,
Nikko
-
This reply was modified 9 years, 4 months ago by
Nikko.
Hi!
Glad that you managed to make it work. Could you please provide a link to a test page? Did you add it using text or code block? If you’re using those elements, move it inside the columns. Set the width of the container to 100% and it will inherit the width of the columns.
.team-profile {
width: 100%;
height: auto;
top:0%;
background-position: 0 0;
animation: revplay 1s steps(15,end) 1 normal forwards;
}
Best regards,
Ismael
Hi!
If i need it directly to the Adwords Code and not to analytics,
I’m sorry but I’m not sure what you meant by that. The filter described in the documentation should modify the onclick attribute of contact form’s submit button in order to track the events.
// https://developers.google.com/analytics/devguides/collection/gajs/methods/gaJSApiEventTracking
// https://support.google.com/analytics/answer/1032415?hl=en
// https://kriesi.at/support/topic/tracking-contact-form/#post-565219
Cheers!
Ismael
Hi,
I’m not sure if I understood this correctly I am looking for a way to substitute old enfold mobile menu with the burger menu on mobile., I think you want to replace the icon with another icon or an image, if it’s an image try to add this code in Quick CSS (located in Enfold > General Styling):
@media only screen and (max-width: 989px) {
#top #advanced_menu_toggle {
background: url('NEW_BURGER_IMAGE') center center no-repeat !important;
}
#advanced_menu_toggle:before {
display: none;
}
}
Just replace NEW_BURGER_IMAGE with the url of the image/icon you want to change, hope this helps :)
Best regards,
Nikko
Hi,
Yes there is a way to do that unfortunately since the columns you are using is 5 it won’t be even if we use 2-3 columns, the only solution I can give you is make it 1 column, I have added this code in your Quick CSS:
@media only screen and (max-width:1024px) and (min-width:768px) {
#top .av-flex-cells {
border: 0;
}
#top .av_one_fifth.flex_cell {
border: 1px solid #eee;
border-bottom: 0;
display: block;
float: none;
margin: 0 auto;
width: 90%;
max-width: 560px;
}
}
Let us know if the solution is good.
Best regards,
Nikko
Hey!
The height of the container does not coincide with the video’s default aspect ratio. You have to edit the video and make it wider or rectangular. You can increase the height of the video and have it cover the whole container or remove the black bars but some parts will get cut off.
.av-video-slide .mejs-mediaelement {
height: 300%;
margin-top: -20%;
}
Best regards,
Ismael
Hi!
If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing. Thank you for your understanding!
P.S: Please leave a review for the theme (https://themeforest.net/downloads) if you have the time. Thank you. Have a nice day!
Best regards,
Ismael
Hi!
Try to change the code I gave to this one:
#top #sub_menu1 {
bottom: 0;
}
#top.page-id-6741 .sticky_placeholder {
height: 0 !important;
overflow: hidden;
}
Let us know if it works :)
Cheers!
Nikko
Hi!
Thank you for the info. We added the following css code in the style.css file.
#top .login_container {
position: fixed;
right: 0;
top: 0;
height: 100%;
padding: 50px 25px !important;
}
Best regards,
Ismael
Hi!
I added following code to Quick CSS in Enfold theme options under General Styling tab
.html_header_top.html_header_sticky #top #wrap_all #main {
padding-top: 160px !important;
}
Please review your website now : )
Regards,
Yigit
Hi,
I’m having some trouble making the links in the menu active.
I want to make the link text white and the background for each link red.
The hover works fine, but I simply can’t make the links active.
The links Im trying to make active is the ones right next to the logo. Not the red menu at the top.
I’ve tried using this, but with no luck.
#avia-menu .current_page_item {
background-color:#d63e2d!important;}
#avia-menu .current_page_item .avia-menu-text {
color: white !important;
}
Any ideas?
Hi,
You can refer to this post – http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/ and add a widget area to your header and position it as needed using custom CSS. For print button, please refer to my post here – https://kriesi.at/support/topic/print-page-from-fullwidth-button-to-replace-ctrlp/#post-685112
Best regards,
Yigit
I cant make the color go to the top of the page as you have in your demo.
http://108.167.143.135/~jhewak/panda/resources-for-parents/ no work
http://108.167.143.135/~jhewak/panda/ works.
What am i doing wrong?
Hey grwebs,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
Feel free to change the font size value to suit your deisgn :)
#top .av-subnav-menu > li > a {
font-size:18px!important;
}
Best regards,
Vinay
-
This reply was modified 9 years, 4 months ago by
Vinay.
update..
tried to delete the css with conflict from the rtl.css of Enfold theme itself.
it stoped jumping from the left to the right but had small jump from the right corner.
any way this shows that even if i will put it before the actual theme rtl.css it wont be 100% fix.
what do you recommend to do?
i never mess with the theme itself. only working on the child theme to avoid change of design when the theme is geting update.
what do you recommend to do?
How do I block out or hide partial text or an image in a mobile.
For the desktop the text length is okay, but on mobile it is to long and would like to hide a few sentences and even hide an image.
I tried googling, looking in the support column but couldn’t find it.
Thanks in advance for you help. Much appreciated.
How to set a sidebar on all bbpress pages as you did on your support web site ? I’d like to do the same.
Currently I can only set the sidebar on the forums page , I set a text widget inside the forum widget as it must be done.
But when I click a topic (forums/forum/topic) or create a new one, the sidebar disappear. And I would not like to edit any Enfold neither bbpress php code.
I just want the sidebar to be always present.
You can check http://cyjs.fr/forums
Thanks.
yes,you can close this topic.
HI,
we are using the travel demo. and the product grid on the front page is great! how do we stop the title from disappearing the mouse hovers over it?
travel.bananatreenews.com
Thanks
@cabbo
I checked on mobile, but the very first image is fixed and behaved for me like on desktop. Please clear browser cache and hard refresh a few times or could you fix it already?
Best regards,
Andy
Hi,
I have a similar question and now I have tried for more than one hour even to be able to make a support topic to get help! Please send a direct link or explanation how to create a topic here so I can get help. Why do you not provide a “Create topic” link anywhere?
Hey ec1warc1,
Please add following code to Fuctions.php file in Appearance > Editor
function avia_loggedin_user(){
$user = wp_get_current_user();
if(is_user_logged_in()){
$output = "LOGGED IN AS: " . $user->display_name;
return $output;
}
}
add_shortcode( 'av_user_info', 'avia_loggedin_user' );
function remove_title_attr(){
?>
<script>
jQuery(window).load(function(){
jQuery('.loggedin-user').removeAttr('href');
});
</script>
<?php
}
add_action('wp_footer', 'remove_title_attr');
Then please go to Appearance > Menu and then check “Screen options” on the top right side and then check “CSS Classes”. After that, add a new Custom Link with # for url and [av_user_info] for navigation label. Then give it a custom CSS class “loggedin-user” and add following code to Quick CSS in Enfold theme options under General Styling tab
.loggedin-user { display: none; }
.logged-in .loggedin-user { display: block; }
Best regards,
Yigit
Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
#top .avia-slideshow-button {
font-size: 20px;
}
Best regards,
Yigit
another example from another website.
in this website i did not used the CSS to manipulate the place of the logo and mobile menu.
just chosen from the theme header setting – Logo left, Menu right.
works on desktop
but it does not work on mobile.
that is my point there is a bug with this setting.
Hi!
I have added this to the Color Section’s Custom Css Class mytable. Then added the code I have posted above, and also included this inside the code I have given:
#top .mytable .av_one_half .XL br {
display: none;
}
To make the Starting in $5,000 be in one line instead of two lines. Let us know if this is also good on your end. :)
Best regards,
Nikko
Brilliant Yigit thank you – legend.
One final question though – how can I move the section head up to meet the bottom of the image?
I tried .hero-section { top: -20px; } but that didn’t work.
You”ll see the issue on the live link in private.
Thanks,
Mark
Hey!
Please add following code to Quick CSS as well
#top .avia-slideshow-button {
padding: 25px 30px;
text-transform: none;
}
Regards,
Yigit
I am using the LAYOUT BUILDER with the BLOG
In the MAIN BLOG PAGE
we need to show: TAGS
we need to remove: AUTHOR, READ MORE BUTTON
In the CATEGORY PAGES
we need to show: TAGS
remove: AUTHOR, READ MORE BUTTON
In individual POST PAGES
we need to show: TAGS, CATEGORY, DATE, SHARE, SIMILAR
View post on imgur.com
HOW TO DO THIS?
I have followed more threads on this topic and I find it confusing.
There is some added PHP code which you added (thank you!) but it did not solve the desired request.
Is there a step-by-step documentation on this?
THANKS!
best regards,
Dara Emerson