-
AuthorSearch Results
-
February 17, 2024 at 8:45 pm #1434617
In reply to: Sticky burger menu + change colour
Hi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width: 767px) { .responsive #top #wrap_all #header .main_menu { position: fixed; padding-right: 30px; } }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,
MikeFebruary 17, 2024 at 8:30 pm #1434613In reply to: Sidebar enfold Law Theme
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,
RikardFebruary 17, 2024 at 7:10 pm #1434604In reply to: Change all button sizes/font sizes site-wide
Well, I found a little hiccup: Whether I use quick css or Advanced Styling > Button … The changes show up on desktop version of site, but not on mobile.
I do not see an option for applying the changes to mobile as well in Advanced Styling . . . is there a way to apply the changes to mobile where it doesn’t look enormous compared to the font etc around the mobile buttons?
J
February 17, 2024 at 7:05 pm #1434601In reply to: Change all button sizes/font sizes site-wide
Oh, I just found that since changing the button size is just a matter of increasing padding, I can do that in Advanced Styling > Buttons > Padding Top/Bottom and Padding Left/Right.
I can tweak font size there too so the button doesn’t look too large for the font.
February 17, 2024 at 6:07 pm #1434592In reply to: WordPress 6.4 & 6.4.1 – Unstable Environment
Hi,
Yes that is what I see, did you try to change your server setting as posted above and the Yoast support thread above?Best regards,
MikeFebruary 17, 2024 at 5:29 pm #1434584In reply to: Masonry Button – same style as my other buttons
Hey Nihru,
Thanks for your patience, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top .main_color .container .av-masonry-load-more { color: #ffffff; border-color: #759c1b; background-color: #97be3d; width: 250px; padding: 15px 0; }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.
the expected results:

Best regards,
MikeFebruary 17, 2024 at 5:15 pm #1434583In reply to: Burger menu Icon – Breakpoint location
Hi,
Thanks for your patience, it looks like you have a customized menu item, I added this css to correct:@media only screen and (max-width: 767px) { .av_main_nav_header.av_menu_right #header_main .main_menu-uber { top: 0px; } #top #header.header_color.av_header_transparency .av-main-nav > li > a:hover .av-hamburger-inner, #top #header.header_color.av_header_transparency .av-main-nav > li > a:focus .av-hamburger-inner, #top #header.header_color.av_header_transparency .av-main-nav > li > a:hover .av-hamburger-inner::before, #top #header.header_color.av_header_transparency .av-main-nav > li > a:focus .av-hamburger-inner::before, #top #header.header_color.av_header_transparency .av-main-nav > li > a:hover .av-hamburger-inner::after, #top #header.header_color.av_header_transparency .av-main-nav > li > a:focus .av-hamburger-inner::after { background: #326295 !important; opacity: 1; } } .av-burger-overlay-active #top #header.header_color.av_header_transparency .av-main-nav > li > a:hover .av-hamburger-inner, .av-burger-overlay-active #top #header.header_color.av_header_transparency .av-main-nav > li > a:focus .av-hamburger-inner, .av-burger-overlay-active #top #header.header_color.av_header_transparency .av-main-nav > li > a:hover .av-hamburger-inner::before, .av-burger-overlay-active #top #header.header_color.av_header_transparency .av-main-nav > li > a:focus .av-hamburger-inner::before, .av-burger-overlay-active #top #header.header_color.av_header_transparency .av-main-nav > li > a:hover .av-hamburger-inner::after, .av-burger-overlay-active #top #header.header_color.av_header_transparency .av-main-nav > li > a:focus .av-hamburger-inner::after { background: #326295; opacity: 1; } #top #header.header_color.av_header_transparency .av-main-nav > li > a:hover .av-hamburger-inner, #top #header.header_color.av_header_transparency .av-main-nav > li > a:focus .av-hamburger-inner, #top #header.header_color.av_header_transparency .av-main-nav > li > a:hover .av-hamburger-inner::before, #top #header.header_color.av_header_transparency .av-main-nav > li > a:focus .av-hamburger-inner::before, #top #header.header_color.av_header_transparency .av-main-nav > li > a:hover .av-hamburger-inner::after, #top #header.header_color.av_header_transparency .av-main-nav > li > a:focus .av-hamburger-inner::after { background: #fff; opacity: 1; }Please clear your browser cache and check.
Best regards,
MikeFebruary 17, 2024 at 4:54 pm #1434582In reply to: Heading Font Different on Mobile
You’re right! I missed that tiny download icon next to the font. Rather than deal with that, I changed the Heading Font to Arial and used the Quick CSS to set the font-weight to 600. Now it looks the same on laptop, table and mobile. Thanks!
February 17, 2024 at 2:27 pm #1434573In reply to: WordPress 6.4 & 6.4.1 – Unstable Environment
Hi,
Thanks for your patience, I found that your site is exhausting it’s allowed memory size in /public_html/wp-includes/class-wpdb.php on line 2320, I noticed that you have some javascript in your page and sometimes these are also executed in the backend, so I moved it to your WP Code plugin as a javascript snippet.
I then created a shortcode to display your getresponse-form snippet and added it to your WP Code plugin:function getresponse_form_shortcode($atts) { $atts = shortcode_atts( array( 'form-id' => '', 'e' => '1', ), $atts, 'getresponse-form' ); $form_id = $atts['form-id']; $e = $atts['e']; if (empty($form_id)) { return '<p style="color: red;">Error: Form ID is missing</p>'; } $html = '<getresponse-form form-id="' . esc_attr($form_id) . '" e="' . esc_attr($e) . '"></getresponse-form>'; return $html; } add_shortcode('getresponse-form', 'getresponse_form_shortcode');Then I added [getresponse-form] to your page to show the form snippet.
While this didn’t solve the issue directly, it ruled out the possibility of the javascript causing the issue in the backend. I found a Yoast support issue that points to /public_html/wp-includes/class-wpdb.php on line 2320 as a known Yoast issue and I tried adding the snippet but this didn’t help, so please try changing your server setting and see if this helps.
max_execution_time = 300
PHP max input variables = 10000
PHP time limit = 300
Max input time = 120Best regards,
MikeFebruary 17, 2024 at 1:17 pm #1434568In reply to: portfolio catagory page adjust
Hi,
Thanks for your patience, when I check your Displayed Everywhere widget is empty, so I assume that you have sorted this out.
Please note that we ask that each thread stays on a specific topic, this helps us provide better support and helps other users find solutions based on the opening subject line quicker. For further questions please open a new thread fir each specific issue
Thank you for your patience and understanding and for using Enfold.Best regards,
MikeFebruary 17, 2024 at 11:24 am #1434559In reply to: enfold mobile view Above header color
Hi,
Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
RikardFebruary 17, 2024 at 12:11 am #1434548fogelfish
ParticipantWhen I attempt to search this forum for a topic, the only server response I get is “There has been a critical error on this website. Learn more about troubleshooting WordPress.” This is happening to me no matter what browser I use. Is anyone else experiencing this? Is there a fix?
-
This topic was modified 2 years, 1 month ago by
fogelfish. Reason: To make it clear this is not about my own website; this is about the kriesi.at forum
February 16, 2024 at 9:52 pm #1434543In reply to: Change all button sizes/font sizes site-wide
I’m getting audit messages that tap targets are too small, especially on mobile devices. They look fine to me on desktop, but my SEO company is saying that I should make them a bit larger. There’s a link below that shows the type of buttons I have around most of the site (I think they are button elements, either medium or large size).
February 16, 2024 at 5:56 pm #1434530Topic: Sidebar enfold Law Theme
in forum Enfoldludgerf
ParticipantHallo,
wie bekomme ich eine Sidebar rechts neben ein Accordion-Menue?Seiten-Aufbau Law Theme:
- Header Logo + Hauptnavigation
- Banner Full fullwidth
- darunder Color-Section mit Accordion
- Footer
Das hier habe ich nicht hinbekommen:
sidebar enfoldVielen Dank
-
This topic was modified 2 years, 1 month ago by
ludgerf.
February 16, 2024 at 5:54 pm #1434529In reply to: Heading Font Different on Mobile
I removed the CSS since it didn’t affect the mobile display. Any idea why the Special Heading shows a different font on mobile and also on an iPad than on a laptop? By selecting the font in General Styling: Fonts, shouldn’t the font be the same on every device regardless of screen size?
Were you able to see the different fonts on your mobile device compared to a laptop?
February 16, 2024 at 5:16 pm #1434519In reply to: Sub menu in a bold style for mobile version
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,
RikardFebruary 16, 2024 at 12:48 pm #1434498Hi,
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,
RikardFebruary 16, 2024 at 12:35 pm #1434496In reply to: vertically center logo in header
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,
RikardFebruary 16, 2024 at 10:13 am #1434478Topic: Sticky burger menu + change colour
in forum Enfolddivinecurio
ParticipantHi I have read through sevceral topics, added and subtracted code, but my burger menu is not sticking. I just want the 3 lines of the burger menu to follow the scroll and be viewable, please?
February 16, 2024 at 10:05 am #1434477Topic: vertical/portrait video background problem
in forum Enfoldamministrazione187
ParticipantHi there. I’m trying to have a vertical/portrait video as only background of a slideshow that fits in a smaller box at the center in desktop and tablet view, and like fullscreen in mobile view. I could set the project size but the video (background) doesn’t fit the div: it’s zoomed. I’ve even tried different sizes, “contain” and “stretch” modes but nothing seems to fit it. What’s wrong?
February 16, 2024 at 6:24 am #1434470In reply to: Need more media query
Hi Ismael,
Thanks for your reply. Here is what I did.
1. I put your code into Appearance > Customize > Additional CSS and published > not working.
2. I go to front-page and then Masonry > Styling > Column and change the column of desktop ( 990px ) back to default and update
3. I works like a charm ! I can change max-width to fit my needs later.I have 2 more questions about this.
1. If I put your css code into custom.css and purge all cache. Why custom.css not loaded to client when refreshed ?
2. Now I changed the max-width to 1365 for iPad screen in horizontal and I found there is an empty space below ( at the bottommost red rectangle as in attached image link ). Is there any way around to expand the masonry gallery’s height to min-height of screen height ?Thank you so much
Chatawat L.
February 16, 2024 at 2:26 am #1434466In reply to: Need more media query
Hi,
Thank you for the info.
Are you trying to break the items into a single column on iPad view? If so, then you can add this css code to manually adjust the width of the masonry items on larger tablet screens.
@media only screen and (min-width: 990px) and (max-width: 1366px) { .responsive #top .av-masonry .av-masonry-entry { width: 100%; } }You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.
Best regards,
IsmaelFebruary 15, 2024 at 10:04 pm #1434449In reply to: Advanced Custom Fields broken since update
I do have Nginx Helper installed, but don’t know if that is effecting anything here.
For your information, I found that with ‘CSS File Merging And Compression’ off, I didn’t need your suggested CSS. I already had the following CSS in place and it fixed what was needed previously and still does without the compression on:
.author {
display: block;
font-weight: bold;
color: #000;
margin-top: -5px;
}
span.mentioned-quoted {
display: block;
line-height: normal;
margin: 4px 0 0;
}
A little of this is redundant to your suggestion and I tried commenting it out and only using your CSS suggestion. This works better for my display. Thought I’d report this for further development.February 15, 2024 at 8:21 pm #1434441In reply to: enfold mobile view Above header color
To revisit this, I’ve seen it change on other websites. I tried to change all the color in the General Setting Logo Area, but nothing changes the very top. Any ideas?
I need something like this: <meta name=”theme-color” content=”#39ff14″/>
And here is an example of a website that has a different theme, but has the top bar that is red: https://drive.google.com/file/d/1c32sHfzOvdCk7YHgs-toEP_d7sUhkSW0/view?usp=sharing
-
This reply was modified 2 years, 1 month ago by
bemodesign.
February 15, 2024 at 4:57 pm #1434428In reply to: Menu wider than content
Hi,
Great, I’m glad that you found the problem. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
RikardFebruary 15, 2024 at 4:57 pm #1434427In reply to: gradient color in h2
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,
RikardFebruary 15, 2024 at 4:56 pm #1434426Hi,
Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (max-width: 767px) { .responsive #top #wrap_all .main_menu { position: inherit; } .responsive #top .av-logo-container .avia-menu { width: 100%; } .responsive #top .av-main-nav { display: table; margin: 0 auto; } .responsive #top .logo { width: 100%; } .responsive .logo img { display: table; margin: 0 auto; } }Best regards,
RikardFebruary 15, 2024 at 4:27 pm #1434421In reply to: Enfold Front Page Problems
This reply has been marked as private.February 15, 2024 at 2:40 pm #1434416In reply to: Burger menu Icon – Breakpoint location
Hi Ismael,
The logo displays and should as seen on the screen capture I provided earlier. I am looking for the burger menu to stay top right side of the logo not bump down.February 15, 2024 at 2:16 pm #1434413In reply to: Burger menu Icon – Breakpoint location
Hey Julie,
Thank you for the inquiry.
Did you configure the default logo not to display on desktop view? The reason the burger menu is pushed beneath the header is because of the logo container, which receives this style on smaller screens.
.responsive #top .logo { position: static; display: table; height: 80px !important; float: none; padding: 0; border: none; width: 80%; }To keep the logo hidden on mobile view, you can add this css code.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .responsive #top .logo { display: none; } }Best regards,
Ismael -
This topic was modified 2 years, 1 month ago by
-
AuthorSearch Results
-
Search Results
-
When I attempt to search this forum for a topic, the only server response I get is “There has been a critical error on this website. Learn more about troubleshooting WordPress.” This is happening to me no matter what browser I use. Is anyone else experiencing this? Is there a fix?
Topic: Sidebar enfold Law Theme
Hallo,
wie bekomme ich eine Sidebar rechts neben ein Accordion-Menue?Seiten-Aufbau Law Theme:
- Header Logo + Hauptnavigation
- Banner Full fullwidth
- darunder Color-Section mit Accordion
- Footer
Das hier habe ich nicht hinbekommen:
sidebar enfoldVielen Dank
Hi I have read through sevceral topics, added and subtracted code, but my burger menu is not sticking. I just want the 3 lines of the burger menu to follow the scroll and be viewable, please?
Hi there. I’m trying to have a vertical/portrait video as only background of a slideshow that fits in a smaller box at the center in desktop and tablet view, and like fullscreen in mobile view. I could set the project size but the video (background) doesn’t fit the div: it’s zoomed. I’ve even tried different sizes, “contain” and “stretch” modes but nothing seems to fit it. What’s wrong?
