Hi!
Please add following code to Quick CSS
@media only screen and (min-width: 768px) {
.container.av-logo-container {
display: none;
}}
.responsive #top .cart_dropdown {
display: none;
}
Cheers!
Yigit
Hey!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.html_top_nav_header.html_header_top.html_header_sticky #top #wrap_all #main {
padding-top: 100px;
}
#header_main_alternate {
background: orange;
}
If that is not what you meant, please elaborate
Cheers!
Yigit
Hi,
1- That because you do not have enough content on your page. Once you have it, it will be display correctly like your other pages.
2- Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
.html_main_nav_header.html_logo_left #top .main_menu .menu>li:last-child>a, .html_bottom_nav_header #top #menu-item-search>a {
padding-right: 13px;
}
Please make sure that > sign is not converted to – http://i.imgur.com/IDXRZQ3.png in Quick CSS field.
Best regards,
Yigit
I just noticed the following in enfold\framework\php\class-framework-widgets.php:
$remote = wp_remote_get( 'https://www.instagram.com/'.trim( $username ), array( 'sslverify' => false, 'timeout' => 60 ) );
And these posts must be the reasons for this: https://kriesi.at/support/topic/unable-to-communicate-with-instagram/ , https://kriesi.at/support/topic/mailchimp-api-not-connecting/#post-552751.
Please don’t set sslverify to false. It is bad practice. See https://www.skyverge.com/blog/developers-stop-using-sslverify-false/ for more information. Having to disable sslverify indicates a PHP configuration error on the web server that users or administrators need to fix, and see https://www.saotn.org/dont-turn-off-curlopt_ssl_verifypeer-fix-php-configuration/ on how to do that.
So please don’t make these kind assumptions for your users, it may break the internet (really). Or if you really have to, make it optional through the Enfold Options Framework.
Other files affected:
./config-templatebuilder/avia-shortcodes/av-helper-mailchimp.php: 'sslverify' => false
and here I have set sslverify to true:
./framework/php/class-framework-widgets.php: $remote = wp_remote_get( ‘https://www.instagram.com/’.trim( $username ), array( ‘sslverify’ => true, ‘timeout’ => 60 ) );`
-
This topic was modified 9 years, 6 months ago by
jan_reilink. Reason: fixed some typos
Ismael did the trick i read in the thread by deleting the content and setting up a background-image:
.format-image .small-preview [data-av_icon]::before {
background: url(path to your image) no-repeat scroll center center / contain ;
content: "";
height: 70px;
left: 5px;
position: absolute;
top: 5px;
width: 70px;
}
works too !
i do the css trick by setting up display: inline-flex.
Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
@media only screen and (max-width: 767px) {
.responsive #top .logo {
float: right;
}
.responsive.html_mobile_menu_tablet.html_logo_right #advanced_menu_toggle {
left: 0;
}}
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:
.content, .sidebar {
padding-top: 100px;
}
Best regards,
Yigit
Hello, I would like to add a number of blank lines (a blank space) at the top of all my pages. Which Php file do I need to change, and can I just add a few breaks in the php? Thx Luc
Hi,
I’m in the process of building a new site with Enfold.
I’m using a Full Width Easy Slider at the top of my page and have a colour section below that with a custom css class as follows
/* approval images overlay */
.approval_images {
margin-top: -8%;
}
This works great on desktop (see grab)
http://screencast.com/t/awDiWwEpjjP
but I’m trying to get the two logos to scale down for mobile devices so that the positions stay relative to the text and button in each slide and don’t encroach on those elements like this
http://screencast.com/t/OTOwC4Jh
or push below eachother like this
http://screencast.com/t/dMjofZ2vNye
Thanks
Phil
I have had a look at previous support threads for this but the solutions haven’t worked.
I want to increase the font size and weight of the top navigation generally but also the sub menu/secondary navigation menu on the home page.
I went to theme options > advanced styling > select element to customise and changed “main menu links” font size and saved but it had no effect.
If you could help that would be great!
Hey Chris,
It seems like a plugin is causing the issue. Can you please try adding following code to Quick CSS in Enfold theme options under General Styling tab
#top #main .sidebar {
height: 100%!important;
}
Best regards,
Yigit
try this here :
.format-standard .small-preview [data-av_icon]::before {
content: url("path to your image");
display: inline-flex;
height: 70px;
position: relative;
top: 5px;
width: 70px;
}
edit : sorry it has to be more selective
this is for : http://webers-testseite.de/ikom/blog/ see the wordpress logo instead of pencil !
for the following sites do it in a similar way !
-
This reply was modified 9 years, 6 months ago by
Guenni007.
i prefer Yigits last link.
if you look to this site (Kriesi Blog Site / Support Forum) and what happend to the logo on shrining this will be one part of the solution. you can let those text stay (the rule of #top .header-scrolled .logo-title on the bottom set opacity to 1) if shrinking has stopped
i changed a bit that code to insert the normal site name and site description of wordpress. So you only have to have the figurative Part of your logo and put in the text via code (this comes to child-theme functions.php):
add_filter('avf_logo_subtext', 'kriesi_logo_addition');
function kriesi_logo_addition($sub)
{
$sub .= "<span class='logo-title'>";
$sub .= get_bloginfo( 'name', 'display' );
$sub .= "</span>";
$sub .= "<span class='logo-title logo-subtitle'>";
$sub .= get_bloginfo( 'description', 'display' );
$sub .= "</span>";
return $sub;
}
than you have to manage your customisation via quick css – something like this (it comes to quick css):
#top .logo, #top .logo a {
overflow: visible;
}
#top .logo-subtitle {
color: #aaa !important;
font-size: 18px !important;
top: 20px !important;
}
#top .logo-title {
transition: opacity 0.4s ease-out;
-moz-transition: opacity 0.4s ease-out;
-webkit-transition: opacity 0.4s ease-out;
-o-transition: opacity 0.4s ease-out;
font-size: 12px;
color: #000;
position: absolute;
left: 7px;
top: -7px;
opacity: 1;
white-space: nowrap;
}
#top .subtext {
float: left;
position: relative;
}
#top .header-scrolled .logo-title {
opacity: 0;
filter: alpha(opacity=0);
}
the overflow: visible instruction here is very important
you can see the result on testpage here: http://webers-testseite.de/ikom/
-
This reply was modified 9 years, 6 months ago by
Guenni007.
My apologies: found the temporary functions.php workaround:
https://kriesi.at/support/topic/content-element-google-maps/#post-656399
Posted for anyone else stumbling on this!
Thank you Enfold peeps :-)
Hi Rikard,
Sorry for the slow reply, I don’t have internet at home at the moment so can only be on here at work.
This is the CSS I’ve added:
#top #main,#top .html_stretched #wrap_all,#top .alternate_color,#top .header_color,#top .main_color,#top .header_color div,#top #header,#top .header_color .container_wrap_meta,#top .header_color .header_bg,#top .footer_color,#top .footer_color,#top .socket_color {
background-color:rgba(255,255,255,0) !important;
}
I found this in the forum when people wanted a completely transparent site which works perfectly. The only different is I still need the back background in the menu bar when it shrinks. I have set he behavior to transparent but with that css it doesn’t work.
Thanks
Paul
well i remember a question i had – that shrinking function does not work on ipad:
so read here for the solution: https://kriesi.at/support/topic/shrinking-header-on-ipad-does-not-work/#post-575345
the code you have to insert in your child-theme functions.php is:
function incluide_custom_js_file() {
wp_enqueue_script( 'avia-main-child', get_stylesheet_directory_uri().'/js/main.js', array('jquery', 'avia-default'), 2, true );
}
add_action( 'wp_enqueue_scripts', 'incluide_custom_js_file', 100 );
you see that the custom script is loaded out of the folder in your child-theme folder “js”
here is Josues link: https://gist.github.com/josueochoa/66beec77cfa7a21e81b8
the main.js file you see in the link of josue (copy/paste the code in a file and name it main.js) upload that main.js to js folder in your child-theme folder via ftp.
now shrinking on ipad works and if you put in now my code above the things got to work:
see here http://webers-testseite.de/ikom
Hi Kriesi
Just want to know if the add to basket bug was fixed in this release or if i should keep the file changes i made for the temp fix here
WooCommerce Add to Basket quick fix
Cheers
For the posts that do not have a featured image, the thumbnail shows up as the standard pencil icon.
I’d like to replace that with my company logo. Is that possible?
This could be related to a past forum article:
Hey Webtext-Autor,
Please try the following in Quick CSS under Enfold–>General Styling:
.home #after_section_1 {
border-top-width: 0px !important;
}
Best regards,
Rikard
-
This reply was modified 9 years, 6 months ago by
Rikard.
Thank you so much!! That sorta worked.
My logo which is 121 px high is now hiding under the menu. I tried setting the header height at the same in the pic you sent and it made no difference.
Also – the menu on the Lifestyle blog demo has a black background menu bar, but the logo area is not black. I need that also.
When I try to make the menu black background – the entire logo area is also black.
Please help!! I will have to change that in a few hours – so you won’t see the menu on top & top 1/2 of the logo under it in a few hours.
Thanks!
Hi,
Did you add the CSS to functions.php? If so that is the reason for it crashing, try it in Quick CSS in the theme options instead. This is the CSS part of the code you posted:
.logo .subtext {
font-size: 28px;
position: relative;
top: 30px;
}
.logo i {
font-size: 14px;
}
.logo > a {
text-decoration: none;
}
.logo a {
line-height: 20px;
}
.responsive #top .logo {
display: block;
height: 120px !important
}
.responsive .logo a {
display: block
}
Regards,
Rikard
Hi,
If you don’t want the top level items to lead anywhere, you can add a custom link instead of them and only adding a hash sign (#) as the link, please try that.
Best regards,
Rikard
please advice,
i cant figure out out how to get my av-subheading in a thicker font than my body text.
this is what i have set up;
#top .av-subheading.av-subheading_below {
color: #111111!important;
margin-top: 25px;
line-height: 1.4em;
font-weight:600!important;
}
body , body p {
font-weight:100;
}
Hi Josue
The code didn’t fix the said issue.
The issue is, on our layout builder the form shortcode is at the bottom section. On front-end it is on top.
The shortcode is not using any CSS or DIVs, but it is showing in the bottom. Please help
on this page http://saywhat.reviews/Reputation/wp-admin/post.php?post=15&action=edit
the shortcode form is at the bottom
this one shows on top http://saywhat.reviews/Reputation/abc-company/
Hey envapk2,
Please try the following in Quick CSS under Enfold–>General Styling:
@media only screen and (max-width: 767px) {
.responsive #top #wrap_all .container {
width: 100% !important;
max-width: 100% !important;
}
.responsive #top #wrap_all .flex_column {
margin-bottom: 0 !important;
}
}
Regards,
Rikard
Hi,
Please try the following in Quick CSS under Enfold–>General Styling for the divider:
#top #header .avia_mega_div > .sub-menu.avia_mega_hr {
border-top-style: solid !important;
}
And this for the border around the background:
#top #wrap_all .avia_mega_div {
border:1px solid white;
}
Thanks,
Rikard
The topic title explains it :)
Is there some kind of a fix that I can integrate?
Thanks.
Hi Josue,
I went through every possible configuration I could think of and this what I keep getting –

It should be popping the images up in a lightbox not sliding out from the top.
Thanks we seem to be moving forward.
We do have another problem.
Can you please help why the shortcode form is being rendered on top of the page, even though it is set up in layout builder in the bottom.
please check the screenshot
http://i66.tinypic.com/2u7lzrq.jpg
http://i66.tinypic.com/2igzwy0.jpg
http://vincentgarreau.com/particles.js/
The user got help on a similar problem. But the solution was never posted. I was looking to the do the same.
Details provided in private content.