Hi,
Thank you for the update.
We made slight adjustments to the css code so that it also takes into account the top position of the logo when the header has shrunk or when scrolling. Please use this updated css code instead.
.logo img, .logo svg {
top: 15px;
}
.header-scrolled .logo img, .header-scrolled .logo svg {
top: auto;
}
Best regards,
Ismael
I found what I changed. The padding of 5% for the Masonry was it. I deactivated it and it is ok now.
#top, #all-posts .av-masonry-image-container {
background-position: unset;
background-size: contain;
background-repeat: no-repeat;
background-color: #FFFFFF;
/*padding-right: 5%;*/
}
I do not receive the emails from the form. They are not received in spam or in any folder.
Wordpress works and sends recovery key.
I have tried deactivating plugins, I have looked in the spam, but it has stopped working for a long time
Hi,
The first css above is what sets the breakpoint:
@media only screen and (max-width: 1190px) {
#top .avia-icongrid.av-flex-cells.av-break-989 .av-icon-cell-item {
flex: 1 1 100%;
}
}
feel free to adjust to suit your needs
Best regards,
Mike
Hi,
Great, I’m glad that we could help you out. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
Rikard
Hi,
Please try this CSS instead:
@media only screen and (max-width: 767px) {
.single-post #main {
padding-top: 100px !important;
}
}
Best regards,
Rikard
Hi Ismael,
Thanks for your reply.
Yes, I already tried column adjustment as you suggested but the problem is when I set 3 columns setting for desktop breakpoint ( 990px+ ). It looks nice on my pc but it doesn’t on iPad. As you can see the iPad screen in the link I attached. It’s much better with 1 column setting on iPad screen but gallery thumbnail for 1 column setting is way too large for pc screen.
I think to resolve this. I need to set another breakpoint for 1920px+ so I can set 3 columns for 1920px+ and 1 column for 990px – 1920px but I don’t know how to do it.
Regards,
Chatawat L.
Hey pelgrimrat,
Thank you for the inquiry.
Are you referring to the gallery above the footer area? The gallery seems to be responding correctly in mobile view, splitting into two columns instead of six. If you’d like to increase the number of columns, you can try using this css code
@media only screen and (max-width: 767px) {
/* Add your Mobile Styles here */
#top .avia-gallery.av-lslwymmy-767d1ca16b1f4d9c429a0176d305ae0e .avia-gallery-thumb a {
width: 33%;
}
}
Best regards,
Ismael
Hi,
Thank you for the update.
You may need to adjust the breakpoint in the css media query above to target smaller screens. Please try this css code.
@media only screen and (max-width: 767px) {
/* Add your Mobile Styles here */
#top .grid-content h3 {
font-size: 32px;
text-align: center;
}
}
Best regards,
Ismael
Hi Ismael!
Sorry for the delay (cancer treatments are terrible for my work life) :(
The file is monocolored from Flaticon. I have no idea why it’s doing this. I will try to upload it again. I just downloaded a different set from Fontello and uploaded it to another site and it worked like a charm.
Can we add more than one collection? (My only reason for doing this is to group them by smaller topics so they are easier for my eyes to find) ;) (this happens to older gals like me)
Thank you!!
Havi
PS: I’ll keep you posted on what I see happening.
Hi,
because my header is high i need to adjust the position of the second menu. The first menu layer ist ok but the second is completly on the wrong position and i can not fix it in css
.sub-menu { top: 98px!important;
border-top: 2px solid #ff9900 !important;}
#top .av_header_transparency .sub-menu { margin-top: 25px;}
#top .av-main-nav ul ul {
left: 100px;
top: 120px;
}
Any ideas?

try to be more specific in your selector. For example use the #top id. or a custom class f.e. like gradient
(be carefull where the custom class is placed f.e. on avia headings it might be a parent class to the h-tag)
#top h2 {
display: inline-block; /*** this might avoid text-align: center ****/
background: linear-gradient(to left, rgb(255,0,0), rgb(121,121,244));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
Hi Rikard,
Well, I just migrated from a 13 inch to a new 14 inch MacBook laptop and that issue with the header seems to be fixed since it is now appearing on all pages across the website. However, the 2nd issue I mentioned (not all items appearing at the sub-menu for “Notaria”), is still occurring but, again, I don´t want to switch the view to a Mega Menu since, even though that might fix that particular issue, it would make it look different from the other existing menu listings (“Herencia” and “Registro Demografico”). So, any other suggestions would be welcomed.
Regards,
Ramon
Ok much better on mobile. However now the breakpoint on desktop is too wide. The icons get vertically aligned a bit too soon.
Hey YMen45,
Maybe this will help you out? https://www.scaler.com/topics/text-gradient-css/
Best regards,
Rikard
Hey Annemarie,
This CSS seems to be causing some problems, please try taking it out:
@media only screen and (max-width: 767px) {
.responsive #top #wrap_all .main_menu {
left: 400px !important;
}
}
Best regards,
Rikard
I set the Heading Font to Arial Black in the General Styling: Fonts section. It displays correctly on my laptop, even if I shrink the browser window down to mobile width. However, it shows what looks like Times New Roman on two different iPhones using Safari. I tried setting it manually in the Quick CSS using !important, but that doesn’t work. I also tried other fonts from the Heading Font dropdown list. They all display correctly on desktop, but mobile headings remain unchanged. And ideas what could be causing this?
Thanks!
JP
stParticipant
Hello,
I am trying to remove the padding of a column and its elements within a grid row for mobile view only. I tried using the following code but it only removes the padding within the grey text box, not the column itself. I need the entire column to be full screen width in the mobile view only.
Thank you
@media only screen and (max-width: 767px) {
.responsive #top #wrap_all .av-flex-cells .no_margin {
padding-left: 0% !important;
padding-right: 0% !important;
}
}
Hi, I am using Masonry Gallery. I set the column ( Masonry > Styling > Columns ) on desktop to 3 columns and it’s working great but when I open the website on my iPad it doesn’t look nice at all. The largest media query I can set for column is desktop ( 990px+ ) and I think I need it to be 990px – 1920px ( large ), 1920px+ ( desktop ) so I can set 1 column for large and 3 columns for desktop.
Is there any solution or workaround ?
Thank you so much
Chatawat L.
the code is on that example page ( ps: on hovering the code there is a copy button on top right)
and by the way – the css is inside a media query greater than 1600px – it has to be set globaly
Hey Munford,
Thanks for the link to your test page, when I check the background video on Windows desktop and Android mobile the video plays correctly, IOS typically blocks videos from auto playing on mobile, they have become more aggressive and the best option is to use a fallback image for mobile or a small gif.
Background videos don’t have sound, the thread you linked to is from 2016 and the browsers have changed a lot since then. Perhaps you can try the LayerSlider instead, but with each update the browsers limit these actions more, so you may be better to design to what is allowed now so you don’t need to redesign later.
The WordPress media player, when it used by Enfold, doesn’t have volume controls on mobile by design, WordPress points out that mobile devices have manual volume buttons so they removed the controls. The only way around this is to use a different media player plugin.
Best regards,
Mike
Hi,
Great, I’m glad that Ismael could help you out. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
Rikard
Hi,
Great, I’m glad to hear that you got it working. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
Rikard
Hi,
Great, I’m glad that we could help. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
Rikard
Hi,
Thank you for your patience, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
.responsive #top #av_section_4 .container {
width: 100%;
}
@media only screen and (max-width: 767px) {
#top #av_section_4 .avia-icongrid .av-icon-cell-item .avia-icongrid-flipback {
padding: 0 3em;
}
.avia-icongrid-flipbox .av-icon-cell-item .avia-icongrid-front .avia-icongrid-inner, .avia-icongrid-flipbox .av-icon-cell-item .avia-icongrid-flipback .avia-icongrid-inner {
padding: 0 3em;
}
}
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
After applying the css, please clear your browser cache and check.
Best regards,
Mike
Hey Bex ,
The update to 5.6.10 has to be done manually from the versions you are running, please refer to my replies in this thread: https://kriesi.at/support/topic/enfold-4-5-theme-update-update-failed-download-failed-a-valid-url-was-not-pro/#post-1021541
You can either update manually via FTP: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update, or use a plugin to upload the theme zip file: https://wordpress.org/plugins/update-theme-and-plugins-from-zip-file/
If that doesn’t work then please try to delete the whole theme folder, then replace it with the new version. Make sure that you have backups of the site before starting updating.
Also please read this after you have updated: https://kriesi.at/documentation/enfold/theme-registration/
Best regards,
Rikard
Hey WorldinColor,
Please try this to make the circle smaller:
#top .iconbox.av-no-box .iconbox_icon {
width: 50px;
height: 50px;
line-height: 50px;
}
This CSS is coming from your child, and it’s applying:
.acme-iconbox .iconbox_icon {
color: #f213f2;
font-size: 20px !important;
}
Best regards,
Rikard
Hi,
Great, I’m glad that you got it working. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
Rikard
Hi,
Thank you for the update.
Have you added the following css code? It removes the padding above the main container, causing the header to overlap with the heading.
.responsive #top #main {
padding-top: 0 !important;
margin: 0;
}
You can override it by adding this css code.
@media only screen and (max-width: 767px) {
/* Add your Mobile Styles here */
.html_header_top.html_header_sticky #top #wrap_all #main {
padding-top: 100px !important;
}
}
Best regards,
Ismael