Forum Replies Created
-
AuthorPosts
-
Hi diefleischerei,
Yes, please use the Custom Css Class, you can put mysection in that field then on Quick CSS use this:
@media only screen and (max-width:767px) { .responsive .mysection > .container { padding-left: 0 !important; padding-right: 0 !important; width: 100% !important; min-width: 100% !important; margin: 0px !important; } }
Best regards,
NikkoFebruary 14, 2019 at 2:08 am in reply to: Error message on wp-admin after upgrade to Enfold 4.5 #1066721Hi Klaasbaas1983,
Glad that we could help :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi TomasOliva,
Glad that we are able to help you :)
Thanks for using Enfold and have a great day!Best regards,
NikkoFebruary 13, 2019 at 4:33 pm in reply to: Chenge font color on "privacy policy message to mailchimp contact forms" #1066524Hi tonydobrevski,
Glad that we could help you :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi Adrien,
Thanks, is the link in private content the right login page?
I tried to login using the credentials you gave however it didn’t work, please check.Best regards,
NikkoHi riffster21,
Glad that we are able to help you :)
Thanks for using Enfold and have a great day!Best regards,
NikkoFebruary 13, 2019 at 12:04 pm in reply to: Move mediaelement "picture" individually (per CSS ?) #1066438Hi gestaltraeume,
Glad that are able to help :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi Adrien,
There’s no admin login details in Private Content in this thread.
Please post it in private content so we can check.Best regards,
NikkoHi Eric Marks,
Would it be okay if we try to make changes on your site? it might take several minutes to test.
Though we do understand that your site is live, if you want to lessen the risk, please create a stage site: https://themeisle.com/blog/wordpress-staging-site/Best regards,
NikkoHi,
@Axel I understand that it didn’t work for you, but restoring your backup and updating again worked for you and we’re glad to hear that and it may also give others ideas that the solution you made works for other people as well.
@benjaminmeier glad to hear that Alex’s solution worked for you :)Best regards,
NikkoHi fta-edfc,
The header is a bit transparent that’s why everything inside it is also semi-transparent.
To fix this go to Enfold > General Styling > Quick CSS then add this code:#top .header_color.av_header_transparency { background-color: rgba(255,255,255,0.8) !important; opacity: 1 !important; }
Best regards,
NikkoFebruary 13, 2019 at 11:02 am in reply to: Chenge font color on "privacy policy message to mailchimp contact forms" #1066395Hi Anton,
Try using this one instead:
#top #av_section_1 .avia-mailchimp-form .av_form_privacy_check label, #top #av_section_1 .avia-mailchimp-form .av_form_privacy_check label a { color: white; }
Best regards,
NikkoHi breezemedia,
Glad that we could help :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi fta-edfc,
Glad that we could help :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi carmentvaalba,
Please add this css code in Quick CSS (located in Enfold > General Styling):
@media only screen and (max-width:1024px) { #top #header .av-main-nav #menu-item-search { display: block !important; } }
You may need to flush out the page cache to fetch the newly added css codes.
Best regards,
NikkoHi ThomSchu,
Am I referring to the right link? the hamburger menu (the one with 3 lines)?
Can you tell us what device you’re using and what browser?Best regards,
NikkoFebruary 13, 2019 at 10:50 am in reply to: Move mediaelement "picture" individually (per CSS ?) #1066381Hi JS,
We apologize for the late response.
You can use Custom Css Class for that, in the WordPress Dashboard go to Enfold > Layout Builder > check Show element options for developers then save.
Then each element should have a Custom Css Class field. For the first cross you can put cross1 then for the 2nd cross cross2
In Quick CSS (located in Enfold > General Styling), add this css code:#top .cross1 img.avia_image { position: relative; top: -10px; left: 30px; } #top .cross2 img.avia_image { position: relative; top: 10px; left: -20px; }
Just adjust the top and left values (you can use negative values).
Hope this helps.Best regards,
NikkoHey jancecile,
Try adding this css code in Quick CSS (located in Enfold > General Styling):
.js_active .avia-slideshow li:first-child { visibility: visible !important; opacity: 1 !important; }
Best regards,
NikkoHi Chris,
Can you try to create a staging site first? basically it’s just a duplicate of your site placed on your subdomain, so this can be used for testing purposes instead of risking your live site.
Here is a tutorial on how to do it: https://themeisle.com/blog/wordpress-staging-site/
Maybe the first thing to try is to disable all plugins and check if this fixes the issue.Best regards,
NikkoHi riffster21,
Just add this css code in Quick CSS (located in Enfold > General Styling):
#top .commentlist .comment-meta.commentmetadata { display: none; }
Best regards,
NikkoHey Maryb,
Can you try to use a child theme, then copy archive.php to your child theme.
Then rename archive.php (in child theme) to category.php then replace all instances ofget_template_part( 'includes/loop', 'index' );
in the file to:
The_Grid ('My Grid Name', true);
Hope this helps.
Best regards,
NikkoHi Tomas,
You can adjust it using Quick CSS, located in Enfold > General Styling, just add this code:
.avia_transform .av_slideshow_full .active-slide .avia-caption-title, .avia_transform .av_fullscreen .active-slide .avia-caption-title { visibility: visible; -webkit-animation: caption-left 1s 1 cubic-bezier(0.985,0.005,0.265,1); animation: caption-left 1s 1 cubic-bezier(0.985,0.005,0.265,1); } .avia_transform .av_slideshow_full .active-slide .avia-caption-content, .avia_transform .av_fullscreen .active-slide .avia-caption-content { visibility: visible; -webkit-animation: caption-right 1s 1 cubic-bezier(0.985,0.005,0.265,1); animation: caption-right 1s 1 cubic-bezier(0.985,0.005,0.265,1); } .avia_transform .av_slideshow_full .active-slide .avia-slideshow-button, .avia_transform .av_fullscreen .active-slide .avia-slideshow-button { visibility: visible; -webkit-animation: caption-left 1.2s 1 cubic-bezier(0.985,0.005,0.265,1); animation: caption-left 1.2s 1 cubic-bezier(0.985,0.005,0.265,1); }
You’ll find the 1s which indicates the number of seconds just change it into something like 2s or 0.5s
Hope it helps.Best regards,
NikkoHey zerodotnine,
Please post us your login credentials (in the “private data” field), so we can take a look at your backend.
- Install and activate ” Temporary Login Without Password “.
- Go to ” Users > Temporary Logins ” on the left-side menu.
- Click ” Create New “.
- Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
( do be sure that we have enough time to debug ). - Click ” Submit “.
- You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.
When your issue is fixed, you can always remove the plugin!
If you prefer to not use the plugin, you can manually create a admin user and post the login credentials in the “private data” field.Best regards,
NikkoHey galpinr,
Try adding this code in functions.php and upload the tall image again and use it:
add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 ); function enfold_customization_modify_thumb_size( $size ) { $size['portfolio'] = array('width'=>495, 'height'=>400, 'crop'=>array( 'center', 'top' )); return $size; }
Best regards,
NikkoHi Carmen,
I have checked the three websites you posted and it’s the same for the three of them.
The only difference I see is that on faceclinic the search icon is hidden on smaller devices.Best regards,
NikkoHi Anneke,
Glad to hear that :)
Thanks for using Enfold and have a great day!Best regards,
NikkoFebruary 13, 2019 at 9:13 am in reply to: Fullwidth button with icon – cutting off text when hovering #1066329Hi Greg,
Glad that we could help :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi hjlubriDK,
Glad that we could help :)
Thanks for posting the plugin that caused the conflict and thanks also for using Enfold.
Have a great day!Best regards,
NikkoFebruary 13, 2019 at 6:21 am in reply to: Fullwidth button with icon – cutting off text when hovering #1066286Hey GregDunn,
Can you try adding this css code in Quick CSS (located in Enfold > General Styling):
#top .avia-button-fullwidth .avia_iconbox_title { -webkit-backface-visibility: visible !important; }
Best regards,
NikkoHi szimmerdesign76,
We’re glad to hear that.
Let us know if you need further assistance or if we can close this thread.Best regards,
Nikko -
AuthorPosts