-
AuthorSearch Results
-
April 2, 2024 at 7:43 pm #1439021
In reply to: Need to add script to and
Hi,
If you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:

then add the code and save.Best regards,
MikeApril 2, 2024 at 6:19 pm #1439015I just checked, and the settings are properly configured to clear all caches, but I’m not sure if that will also delete minified JS/CSS (which is one of the 2 dropdowns when you hover over the WPFC tool on the top toolbar.
April 2, 2024 at 6:04 pm #1439011In reply to: contact form notification in Chinese?
Ya, I got it working. The problem is, with those security features, it takes 10-15 seconds for the ReCaptcha to approve … long enough that when I was testing I instinctively assumed it was done because I pressed “something” . . . you’ll see I put a note under the submit button … but for the submit button to stop having stripes and become active, it’s 10-15 seconds.
I was getting spam without the security . . . what’s odd is that I did not get spam before (even when the form was working) and I didn’t have security up.
J
April 2, 2024 at 5:47 pm #1439010Hi,
It would be easier to help you if you had a test page that we could see, but as I look at your css above the code for the image background has too many places, most browsers only support six places in a color code, and you are adding a background to an image on hover which you will not see, because it is behind the image.
Try using a grayscale filter on the image like this:#top .layout-wholebox:hover .layout-image { transition: opacity 0.4s ease-in-out !important; filter: grayscale(100%); }Here is an example of some other filters that you can use.
Best regards,
MikeApril 2, 2024 at 12:48 pm #1438986In reply to: only on this page
Hi,
To change the color of the widget title for both pages try this css:#top #wrap_all .all_colors .widgettitle, #top #custom_html-2 > h3.widgettitle { color: #000000; text-transform: none; font-size: 23px; font-weight: 200; }to show the footer on tablet you need to change the css to show for tablet, we will say it is 768px, so use this:
@media only screen and (min-width: 768px) { #top:not(.page-id-3288,.page-id-3593) #footer { display: none; } } @media only screen and (max-width: 767px) { #top #footer { display: none; } }some tablets are different sizes like 1024px & 1366px, but 768px should cover all of them.
Best regards,
MikeApril 2, 2024 at 12:30 pm #1438985Topic: Share buttons
in forum Enfoldaaronjosephhall1
ParticipantIs there a way to get the enfold share buttons to appear at the top of a blog post also? Right now they only appear at the bottom. I would like them at the top and bottom.
April 2, 2024 at 10:29 am #1438972Topic: Gap between the lines in the mobile view
in forum Enfoldklick.design
ParticipantHello,
I have a small problem. I would like to make the columns and rows in the FINNDENT block without spaces. This works in the desktop view, but in the mobile view I always have white columns in between. Is there a way to remove these?
The link shows this to the sample view.April 2, 2024 at 9:36 am #1438968In reply to: portfolio category page style changed
Hi Ismael
Thanks for your support.#top.tax-portfolio_entries .no_margin.av_one_third { float: none; margin-right: 2%; width: 31%; margin-bottom: 2%; } #top.tax-portfolio_entries .grid-sort-container { display: flex; flex-wrap: wrap; flex-direction: row; } #top .grid-entry-title.entry-title { font-size: 1.2em; padding: 10px 13px; }i want make my tag page same style as categories page.
i make some change of up code, but failed. could you help.Thanks
Wang
April 2, 2024 at 8:48 am #1438964In reply to: Responsive
Hi Ismael,
I have tried adding the code and it seems to work fine on devices such as XR up to tablet dimensions. However, not all mobiles shows the tabs in one line. For your further assistance, please. Sharing with you the code for the pill-shaped tabs I included in the Quick CSS.
/* Tabs Pill Shape*/
.av-pill-tabs .av-tab-section-tab-title-container a {
background: #0B897A;
border-radius: 5px;
padding: 0!important;
margin-top: -10px;
overflow: hidden;
}.av-pill-tabs .av-outer-tab-title {
padding: 0px!important;
margin: 0 !important;
}/* Tab arrow */
.av-pill-tabs .av-tab-arrow-container {
top: 5px;
}
#top .av-pill-tabs .av-tab-arrow-container span {
background: #ffffff;
}/* Add your Mobile Styles here */
#top .av-pill-tabs .av-section-tab-title {
margin-right: 8px;
padding: 0 !important;
}.av-pill-tabs .av-inner-tab-title {
color: #FFFFFF;
font-size: 0.9em;
margin-bottom: 0px !important;
line-height: .5em;
padding: 8px !important;
}
}-
This reply was modified 1 year, 12 months ago by
Renard. Reason: Edited css code
April 2, 2024 at 8:34 am #1438963In reply to: Reduce height of color section in mobile (EnfoldApp)
Hey Renard,
Thank you for the inquiry.
You can add this css code to decrease the height of the color section and adjust the position of the floating image:
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .responsive #top #wrap_all .flex_column.av-lu0i0x4l-8e878727dd70b1d7d7004e10aa47c98c { margin-top: -180px; margin-bottom: -50px; } .responsive #top.page-id-261 #av_section_1 { height: 400px; } }Best regards,
IsmaelApril 2, 2024 at 7:56 am #1438956In reply to: Cookie Message
Hi,
Thank you for the inquiry.
– I would like to have a space between the buttons and the message bar.
– Also, a slight shadow above the entire cookie-bar would be nice
– and a slightly larger font only in the mobile versionYou can add this css code to adjust the style of the consent box based on your description above.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .responsive #top .avia_cookie_text { margin-bottom: 10px; } .responsive #top .avia-cookie-consent p { font-size: 14px; line-height: 1.2em; } .avia-cookie-consent a.avia_cookie_infolink, .avia-cookie-consent p, .avia-cookie-consent .avia-cookie-consent-button { display: inline-block; vertical-align: middle; font-size: 13px; letter-spacing: 0.05em; } .avia-cookie-consent { box-shadow: 0px -4px 6px rgba(0, 0, 0, 0.1) } }Best regards,
IsmaelApril 2, 2024 at 7:47 am #1438955Hi,
Have you tried disabling autoplay (Enable Autoplay) and making sure that the video is not muted (Mute Video Player)? The theme will automatically set the volume to 100% if autoplay is disabled, and users can then control the volume using the physical buttons on their devices. Alternatively, you can upload the video to YouTube or Vimeo to use their default media players.
Best regards,
IsmaelApril 2, 2024 at 7:42 am #1438954In reply to: portfolio category page style changed
Hi,
Thank you for the update.
Have you made any changes to the arrows? To fix the styling issue with the arrows on the tag and category pages, please add the following css code:
.grid-content .avia-arrow, .tag .grid-content .avia-arrow { z-index: 10; border: none; top: -5px; } .grid-content .entry-content-header { z-index: 20; position: relative; } .tag .grid-content { position: relative; } .tag .grid-content .avia-arrow { border: none; top: -11px; }Best regards,
IsmaelApril 2, 2024 at 7:32 am #1438952In reply to: Different Burger Icon size on desktop and mobile
Hi,
Thank you for the clarification.
You can add this css code to adjust the size of the burger menu on mobile view:
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .av-hamburger-box { width: 24px; height: 24px; display: inline-block; position: relative; top: 10px; } .av-hamburger-inner::before { top: -7px; } .av-hamburger-inner::after { bottom: -7px; } }Best regards,
IsmaelApril 2, 2024 at 3:28 am #1438946In reply to: Responsive
This reply has been marked as private.April 2, 2024 at 2:20 am #1438944Topic: Reduce height of color section in mobile (EnfoldApp)
in forum EnfoldRenard
ParticipantHi, Is there a way to reduce the height of the header color section with an image background? When viewed on mobile, the section has too much space and the devices image seems to float. We’d like to achieve the desktop view effect in smaller devices too if possible. Site link is in private content.
April 1, 2024 at 11:54 pm #1438934In reply to: Button position on sliders
Hi,
When I check your page on desktop the css I posted above is not applied, and this is what makes the button larger and center, so I don’t know if you have an error in your css, or if you didn’t add it because you didn’t understand, but this is the desktop part of the css that you should ensure to use:@media only screen and (min-width: 768px) { #top .caption_bottom .slideshow_caption .slideshow_inner_caption { position: relative; text-align: center; } #top .slideshow_inner_caption .avia-slideshow-button.avia-button { width: 300px; height: 100px; font-size: 24px; } .html_header_transparency #top #main .caption_bottom .slideshow_caption { padding-top: 0; } }this is the result:

I now assume that you now wanted the button to move up a little, so you would then add this css:@media only screen and (min-width: 768px) { .slideshow_inner_caption { top: -100px; } }for this result:

feel free to adjust to suit.Best regards,
MikeApril 1, 2024 at 10:04 pm #1438930Even with the code in enfold child functions.php, the issue occurs. Since we are discussing reCaptcha in another thread, and saving things in Enfold Options seems to be part of the problem (though not in isolation), I did this to test the code in functions.php (I had cleared everything after putting in the code):
1) Went to Google and got my v3 API keys
2) Entered the keys and Saved
3) Tested the keys, and it auto-saved
4) Opened my Contact page, opened the form, changed Security to reCaptcha v3
5) Saved form changes
6) Updated the pageFrom there, I went to my Chrome browser, made sure to clear all browsing data first then went to my site…homepage was fine. Then clicked Counseling Services from the main menu and the white screen with hyperlinks and a slightly deformed logo appeared. I closed the Chrome browser window, cleared browsing data and closed Chrome.
Then I went back to my Dashboard in Firefox and cleared all of the caches in the WPFC (from the top menu, there is a drop-down with 2 items to clear).
Then I retested in Chrome. Now it worked.
SO, is there a way for this thing to clear all caches automatically after saving Enfold Child Options settings? I’ll ask the WPFC folks if there is a way it can auto-delete caches after each of these changes as well.
Jon
April 1, 2024 at 8:07 pm #1438928Got it. Topic can be closed. thank you!
April 1, 2024 at 8:02 pm #1438927In reply to: Button position on sliders
Thank you!
It’s perfect on mobile now!
Can we get it good on desktop view as well?
On Desktop it is fullscreen sliderApril 1, 2024 at 5:45 pm #1438919In reply to: Button position on sliders
Hi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width: 450px) { .slideshow_inner_caption { top: -30px; } }After applying the css, please clear your browser cache and check.
Best regards,
MikeApril 1, 2024 at 5:45 pm #1438918In reply to: Different Burger Icon size on desktop and mobile
Hi Rikard,
I am using on desktop the burger menu instead of text menu.
If I choose the default burger menu icon style for mobile, than the size of burger menu on desktop is ok but on mobile I would prefer to have it smaller.
See link enclosed with default size.Thank you for your help.
Best regards!April 1, 2024 at 4:29 pm #1438910In reply to: portfolio category page style changed
Hi Ismael,
Thanks for your kind support.
the portfolio categories page is OK.
only one point, i wonder if it is a bug: the small square small outside line, the hover error sometimes.

https://www.wlhtex.com/en/tag/activewear-fabric/
the tag page still no change,
could you pls help. and the small quare is on the top of picture, it should be in the bottom.

Thanks and best regards,
Wang
April 1, 2024 at 4:22 pm #1438909I understand that the videos are muted with autoplay on.
The problem is there is NO WAY TO UN-MMUTE THE VIDEO AT ALL. IT CANNOT BE UN-MUTED ON ALL BROWSERS ON THE PHONE! There is NO option to click anything anywhere and UN-MUTE the volume on ANY browser on the phone. If you click the video it just pauses it. IT DOES NOT UN-MUTE the video. There is NO option to click the sound icon and turn the sound on AT ALL! It’s COMPLETELY MUTED WITH NO OPTION AT ALL TO HEAR THE SOUND AT ALL ON THE THE PHONE.
Same issue on Chrome on the iPad. There IS NO WAY AT ALL ANYWHERE TO TURN THE VOLUME ON! Click the video DOES not turn on the SOUND! There is NO icon anywhere to turn on the sound!
How can you hear the video sound on a phone?
Thanks
ScottApril 1, 2024 at 4:20 pm #1438908In reply to: Button position on sliders
It worked quite well on mobile. Can I get the button a bit higher though?
No change on desktop view.
April 1, 2024 at 4:12 pm #1438907I meant to width of the header on desktop?
f.e.: Moblile Header on Dektop with width 900px, on mobile default width – Normal Header on all other pages default widthCan I have a different burger icon color on mobile and on desktop?
April 1, 2024 at 3:41 pm #1438903In reply to: Contact form
Hi,
Great, I’m glad to hear that it’s working as it should. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
RikardApril 1, 2024 at 10:31 am #1438882Topic: Different Burger Icon size on desktop and mobile
in forum Enfolddreamreader
ParticipantHi,
how could I get different sizes for the burger menu icon for desktop and mobile?Thank you for help!
Best regardsApril 1, 2024 at 6:55 am #1438875Hi,
The settings in Enfold for the video is NOT SET TO MUTE!
Yes, that is correct, but it is set to autoplay, and as we mentioned before, the theme automatically mutes the video if autoplay is enabled. Please review the link to the browser policy for autoplay provided above.
Best regards,
IsmaelApril 1, 2024 at 3:49 am #1438870In reply to: FAQ Accordians don’t open on Android?
Hi,
Thank you for the update.
The toggles are not working properly even in desktop view. Have you tried to temporarily disable the plugins? We have found an error in the console which might be causing the issue.
Uncaught TypeError: $.avia_utilities.supports is not a function at avia_hover_effect (avia.js:780:32) at $.avia_utilities.avia_ajax_call (avia.js:210:3) at HTMLDocument.<anonymous> (avia.js:101:26) at e (jquery.min.js:2:27028) at t (jquery.min.js:2:27330)Best regards,
Ismael -
This reply was modified 1 year, 12 months ago by
-
AuthorSearch Results
Viewing 30 results - 5,431 through 5,460 (of 142,869 total)
-
Search Results
-
Topic: Share buttons
Is there a way to get the enfold share buttons to appear at the top of a blog post also? Right now they only appear at the bottom. I would like them at the top and bottom.
Hello,
I have a small problem. I would like to make the columns and rows in the FINNDENT block without spaces. This works in the desktop view, but in the mobile view I always have white columns in between. Is there a way to remove these?
The link shows this to the sample view.Hi, Is there a way to reduce the height of the header color section with an image background? When viewed on mobile, the section has too much space and the devices image seems to float. We’d like to achieve the desktop view effect in smaller devices too if possible. Site link is in private content.
