Hi,
I think the solution for that is to enable Custom CSS Classes: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ then add a class for example form-with-bg to the color section then change the code I gave above with this:
#top .form-with-bg .avia_ajax_form .text_input,
#top .form-with-bg .avia_ajax_form .text_area {
background-color: rgba(0,0,0,0.9) !important;
}
Then on every form that has background, add the class name to the color section in which it resides. Hope this helps :)
Best regards,
Nikko
Hey Chris_85,
Try adding this css code in Quick CSS (located in Enfold > General Styling):
#top.home span.image-overlay.overlay-type-extern {
display: none !important;
}
#top.home #av_section_3 .isotope-item > .inner-entry:hover img {
opacity: 0.5;
}
Hope this helps ;)
Best regards,
Nikko
Hey clairemartindigital,
Try adding this css code in Quick CSS (located in Enfold > General Styling):
.html_header_top #top .av_header_stretch .container {
width: 95%;
}
Hope this helps :)
Best regards,
Nikko
Hey guys,
I have a problem. I want to change size of the price (see privat link).
p.product_price.price.headerfont {
color: red;
}
Would work, but the get override by enfold. I would need to change CSS on
#top .main_color .price, .{
color: red;
}
To get it worked. But with this code, I would change price style on all sites, not only on single product. Can you guys explain me, how I can fix that?
Best regards
Alex
Hey unicaweb,
Try adding this css code in Quick CSS (located in Enfold > General Styling):
#top.page-id-1711 .avia_ajax_form .text_input,
#top.page-id-1711 .avia_ajax_form .text_area {
background-color: rgba(0,0,0,0.9);
}
Hope this helps :)
Best regards,
Nikko
It stopped on 3% ….. http://prntscr.com/fdq9db .
I really need increase image size! any other solution?
Thanks
i think i figured it out by using the following css code:
.page-id-13 .av_one_half .avia_textblock {
position: relative;
top: -10px; }
.page-id-13 .av_one_half .avia_textblock p {
margin: 0 0 1.7em; }
THX Freek
Hello, I am using the new tab Section which is a great feature!
My Tabs contain long text content. Therefore i would like to add Links with #anchors on top to jump in the open tab to the linked passage. I can add div with ID as a codeblock, but there is no way to get the link jump to the anchor. Works fine outside the Tab Section but within I cannot jump to my #anchors.
Let me know if you have a solution for this.
-
This topic was modified 8 years, 10 months ago by
royaltask.
We are using the default contact form on our website and always had captcha enabled on this form from the beginning.
Have received 5 spam enquiries this weekend, all appear to be from Russia (!) am concerned, we will soon become unindated with these.
Is there anyway to stop this please ?
Thanks
Rosa Moliner Gilberga
HI John,
Our website (https://remeiets.cat/) is an online shop selling herbal and dietary products.
Informatic developer who was helping us is not operating for personal causes and we are finishing ourselves the latest things, (we have a very basic level).
The only thing we need to open the site to the public is to put the searcher situated on the center top menu (non collapsible):
Appreciate your help,
Thanks,
Rosa
Hi,
I cannot figure this out and maybe you can help me out.
We want the top of an image align with the first row of a text block. Both are centered in the columns but we want both text and image with 0 top-padding.
see this Mockup
THX Freek
Hello there dear Kriesi Team,
I’m kind of heaving the same or similar problem as @erdebene in this thread:
I have some 100% height color sections, all linking to the next section.
If you click the scroll down arrow, the content of the next section is not centered and the next scroll down arrow is not visible. (it is off by a few pixels, but enough to be noticable, especially when the next scroll down arrow appears after scrolling)
I’ve noticed the same problem across all enfold installations so it shouldn’t be an individual issue.
But just to be sure and for you guys to be able to better support it i’ve reproduced the behavoir on a test install, with no plugins, caching or anything that could compromise the bevavoir. (See details in private content).
The offset issue seems to be connected to the header (height) somehow, as the scroll behavoir works as it should when the header is deactivated on that page. Also the height that is missing for the (next section) content to be centered, seems to be just about the same height as the header.
So…
– Latest version of enfold 4.0.7
– latest version of wordpress 4.7.5
– No Plugin conflicts
– No Caching issues
– No corrupted files (Made a fresh enfold ftp install)
I’ve tried the suggested solutions:
– Plugin Hash Link Scroll Offset https://kriesi.at/support/topic/menu-and-scroll-down-arrow-does-not-hit-the-target/#post-774784
– Custom Script that @vinay provided https://kriesi.at/support/topic/menu-and-scroll-down-arrow-does-not-hit-the-target/#post-783670
Both didn’t show any effect …
Your help with this issue is much appreciated.
Thank you!
best regards
Niko
Hi,
Can you try adding this css code:
@media only screen and (max-width:959px) {
.responsive #top #wrap_all .container.av-logo-container {
padding-top: 20px;
padding-bottom: 20px;
}
}
Hope this helps :)
Best regards,
Nikko
Hi,
I can’t think of any other way to do it, and that’s why Quick CSS is available to give themes capability to be flexible. The 3rd bio is not using text block can you try to change it to text block and replace the css code I gave you with this one:
.page-id-214 .av_four_fifth .avia_textblock {
position: relative;
top: -5px;
}
.page-id-214.av_four_fifth .avia_textblock p {
margin: 0 0 1.7em;
}
Best regards,
Nikko
Hi Mabel!
Here’s what you can do:
1.) Turn on CSS class fields for ALB elements: kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
2.) For the elements you want to only see in desktop (your Color Section), add the class desktop-only. For the elements you want to only see in mobile (your accordion), add the class mobile-only.
3.) Use this code in Quick CSS:
/* when in mobile, hide the desktop-only elements */
@media only screen and (max-width: 767px) {
.desktop-only { display: none!important; }
}
/* when in desktop and tablets in landscape orientation, hide the mobile-only elements */
@media only screen and (min-width: 768px) {
.mobile-only { display: none!important; }
}
For your reference, here are the media queries for standard devices: https://css-tricks.com/snippets/css/media-queries-for-standard-devices/
I hope that helps!
Best regards,
Sarah
Hi,
Please add this in your Quick CSS:
#top #wrap_all .av-social-link-AVVO {width:120px;}
Don’t forget to flush your cache after saving, so you can see the changes! :)
Best regards,
Sarah
Hey garyhsueh,
Try adding this css code in Quick CSS (located in Enfold > General Styling):
.page-id-214 #av_section_1 .av_four_fifth .avia_textblock {
position: relative;
top: -5px;
}
.page-id-214 #av_section_1 .av_four_fifth .avia_textblock p {
margin: 0 0 1.7em;
}
Hope this helps :)
Best regards,
Nikko
Hi,
Can you try adding this css code in Quick CSS:
#top .avia-font-Flaticon, body .avia-font-Flaticon,
html body [data-av_iconfont='Flaticon']:before {
font-family: 'Flaticon';
}
Hope this helps :)
Best regards,
Nikko
Hello, I created a vertical team page that is more suited to my company’s needs. Quick question – I’m using text blocks for the bio and I cannot get the picture from the Team element and the text block element to line up properly. Help!
Hey eternalkid,
The only CSS affecting your logo is this, it puts space above and below the logo:
strong.logo img{
padding: 25px 0px;
}
You can try this instead:
.logo img {
max-width: 80%;
padding-top:15px;
}
Best regards,
Rikard
Hi,
I was working on my site last night and on a page reload all of a sudden the top and bottom padding of the av_section_1 has disappeared. I can’t get it back. The title is now hard against the bottom of the menu. I have large padding selected. If I create a new color section and put it up the top then the section that was affected as av_section_1 now becomes av_section_2 and is fine. However the new av_section_1 has the same issue.
I have the latest version of Enfold (4.0.7) and of WordPress (4.7.5) installed. I tried reinstalling a new Enfold version into the themes folder, but that didn’t work.
I have found a work around for now by adding this to the css:
#av_section_1 {
padding-top: inherit;
padding-bottom: 50px;
}
However it is strange that it just broke. This is a temporary fix, and I’d like to get it back to normal. Can someone help?
Thanks,
Wade.
So now I got it to look like I want:
.single-product-main-image .images a, div.images img {border: 0px!important; padding: 0px!important;}
div.flex-viewport {margin-bottom: 2px!important;}
.single-product .av_header_transparency + #main > .container_wrap_first {
padding-top: 140px;
}
But that artifact is still there. Any idea what it is? It seems to be caused by the first CSS statement. If I put a padding-top of 4px or higher, it’s masked ?! It’s driving me crazy…
-
This reply was modified 8 years, 10 months ago by
Itai.
Just managed to fix it so in: public_html/aimgrp.com.au/wp-content/themes/enfold/functions-enfold.php I have added: add_theme_support(‘avia_template_builder_custom_css’); at the top of this file.
Where do I put in the rest of the code? Or have you done this and do I not need to do this?
Hi,
How about something like this:
.html_header_transparency #top .avia-builder-el-0 {
padding-top: 25vh!important;
padding-bottom: 25vh!important;
background-color: #E4E4E4!important;
}
I tried to match the color of your slide to blend the edges.
Best regards,
Mike
Hi,
Try this code in the General Styling > Quick CSS field:
@media only screen and (max-width: 767px) {
.responsive #top .avia-slideshow-controls a {
display: inline-block!important;
}}
I added !important;
Best regards,
Mike
Hello – I am getting an error message on the top of my home page”
Fixed.
-
This topic was modified 8 years, 10 months ago by
sutara. Reason: fixed
Hi,
We could try adjusting the sub-menu over a little:
#top .av-main-nav ul ul {left: 110px!important; }
and/or moving the whole menu over some:
.main_menu {right: 200px !important; }
But this is why the sub-menu was popping out left :)
To add a button in the menu, create another menu item a choose Button Style from the Menu Style drop down.

Best regards,
Mike
Hi,
I’m not sure how you want to increase the space for that line, top bottom right?
For creating line brakes for the phone number and icons in mobile view try this code in the General Styling > Quick CSS field:
@media only screen and (max-device-width: 1024px) {
.menu-item-3288 {display:block!important; padding-bottom:20px!important;}
.menu-item-4019 {white-space: pre-line!important; padding-bottom:10px!important;}}
Best regards,
Mike
Hi,
Add the following to quick css:
.logo a img{
margin-top:20px!important;
}
Best regards,
Jordan Shannon