Forum Replies Created
-
AuthorPosts
-
Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHey Steve,
Thank you for the link to your site, to fix your header after scrolling try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#header.header_color .header_bg { background-color: transparent; }
for a border around a linked image, try this:
a.avia_image:hover { border: 2px solid #ff0000; transition: none; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
In this case it needs to stretch to fit, I adjusted for you, please check.Best regards,
MikeHi,
Yes, the top one is to remove the capitalizon of the text, the bottom one is to remove the opacity and add the underline on hover.Best regards,
MikeHi,
Currently when a special heading has a link and hovered (mouse-over) the opacity is changed to 0.5, so to remove this and add a underline try this css:#top .av-special-heading.av-linked-heading a:hover { opacity: 1; text-decoration: underline; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Lets please stay on one topic, otherwise I’m not sure what you are talking about.
This thread is about customizing your cookie bar, please add the css above to achieve the image above.
Please remember I said it won’t be exactly like your image, plase allow for some variable.Best regards,
MikeHi,
The font weight at Enfold Theme Options ▸ Advanced Styling ▸ All Headings (H1-H6) was set to standard which uses the theme default of 600.
I changed it to normal so it will be 400
Our choice of words may have been confusing, “standard” is the theme default, “normal” is probably what you may call normal/standard.
Please clear your browser cache and check.Best regards,
MikeHi,
Do you mean the H2 lirum larum lirum…?
I added this css to your Quick CSS:.template-page .entry-content-wrapper h1, .template-page .entry-content-wrapper h2 { text-transform: none; }
Your H2 links like Om os, do you want it underlined on hover or always?
Best regards,
MikeHi,
When I check your page the text looks correct, please see the screenshot in the Private Content area.
Try clearing your browser cache, please note that iPhones can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.Best regards,
MikeHi,
The slideshow button is set to bold by default, to change try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top #main .avia-slideshow-button { font-weight: normal; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHey fingerfoodmen,
These are not correct rgba colors:
rgba(1.4912508245100362, 1.4912508245100362, 1.4912508245100362, 0.77)
your colors need to be like this:
rgba(255, 255, 255, 0.77)
If this doesn’t help please include the url to the page in question so we can take a closer look.Best regards,
MikeHi,
Glad Nikko was able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHey waterwalk,
Thank you for the link to your site, I see that you have old header.php & footer.php in your child theme, I didn’t find any customization in either of these, so please remove both of these files. We don’t recommend adding these to your child theme because it is the top reason for issues after updating, these two files are linked so if there is a change in one or the other in the update it will cause issues.
If you want to add customizations we recommend adding them to the functions.php, can advise how to do so when you have a need.
If your footer is still not right after you remove these two files then I will take another look.Best regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
WordPress doesn’t always load all of the files for the theme in the preview mode, and we can’t change the core WordPress files to force it to, so we recommend publishing your page and review it in another tab/windowBest regards,
MikeHi,
Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
Mike#top .avia-cookie-consent.avia-cookiemessage-bottom { bottom: unset; left: unset; margin: 0; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } #top .avia-cookie-consent .avia-cookie-consent-button { display: block; width: 60%; margin: 10px auto; } #top .avia-cookie-consent p { display: block; padding-bottom: 20px; } #top .avia-cookie-consent-button { border-radius: 50px; } @media only screen and (max-width: 767px) { #top .avia-cookie-consent.avia-cookiemessage-bottom { width: 80%; } } @media only screen and (min-width: 768px) { #top .avia-cookie-consent.avia-cookiemessage-bottom { width: 25%; } }
Best regards,
MikeHi,
When I check the footer.php the closing brackets that you are pointing to, #main & #wrap_all close before the WordPress footer function that I assume that Elementor is hooking in to:
Best regards,
MikeHi,
I disabled the css Nikko was talking about, please clear your caching plugins and your browser cache and check.
It looks like your top yellow column may have a min height of 950px set, if so you may wish to remove it as it is not needed, but try clearing your caching plugins first.
WPRocket & Object CacheBest regards,
MikeHi,
Thanks for the screenshot and the link to your site, from experience this looks like a lazy load issue with a caching plugin, so I put your 10Web Booster plugin into test mode and now the slider image loads on mobile. I couldn’t examine the plugin settings because it requires another login and when I went to disable the plugin it offered the “test” mode as an option. So check your plugin settings and try to disable the lazy load on the homepage or for mobile or whatever other option it gives you.Best regards,
MikeHey Celeranttechnologycorp,
First ensure that the Custom Fields option is enabled in the Screen Options at the top of your page in the Classic Editor:
Or in the Block Editor, go to Preferences ▸ Panels ▸ Custom Fields:
Then add a custom field custom_title and enter the value you want:
Then add this code to the end of your child theme functions.php file in Appearance ▸ Editor:add_filter( 'the_title', 'custom_field_title', 10, 2 ); function custom_field_title( $title, $post_id ) { if( $new_title = get_post_meta( $post_id, 'custom_title', true ) ) { return $new_title; } return $title; }
and your custom title will show in the title bar:
Best regards,
MikeHey Team-Survival,
Thank you for your question, but in this specific case theoverflow: visible
is used to show the box shadow around your image along with theoverflow-clip-margin: content-box
Please note that at the bottom of the post it says If overriding the overflow property to visible is not intentional in this case it is intentional, PageSpeed can’t tell the difference, so this can be ignored.Best regards,
MikeHi,
Just to follow up, the Dev Team has applied this to the theme for the next update. So you could remove the above solution after the next update or leave it as it would not cause any issues.
Unless there is anything else we can help with on this issue, shall we close this thread then?Best regards,
Mike -
AuthorPosts