Forum Replies Created
-
AuthorPosts
-
Hi studiono,
Please try adding this CSS code in Quick CSS, located in Enfold > General Styling:
#top.page-id-2 .form_element { display: flex; align-items: flex-end; } #top.page-id-2 label { margin-bottom: -2px; } #top.page-id-2 #element_avia_1_1 label { width: 190px; } #top.page-id-2 #element_avia_2_1 label { width: 290px; } #top.page-id-2 #element_avia_3_1 label { width: 90px; }Best regards,
NikkoHi katharina_stelzer,
I tried to log in to your site however, I could not get past the popup window that appears asking for username and password (I tried to use the credentials you gave but it does not work).
Best regards,
NikkoHi Daniele,
Can you try the snippet by Ismael or Guenni007 in https://kriesi.at/support/topic/media-upload-and-enfolds-thumbnail-sizes/#post-1271480 ?
Just change the $quality value.
@Guenni007 thanks, I have tested the snippet and it worked pretty well on my end.Best regards,
NikkoJanuary 12, 2021 at 9:28 am in reply to: CSS code to add a background color to a special heading element #1271784Hi RosannaK,
Thanks for giving us the link and admin access.
I noticed that you were using Advanced Layout Builder, so I suggest doing the following steps:
1. Edit the Special Heading (product title), go to Advanced > Developer Settings > Custom CSS Class, then put my-product-title then save.
2. Go to Enfold > General Styling > Quick CSS, then add this CSS code:#top .my-product-title { background-color: blue; }Just change the blue (value) in background color to any color you’d like.
Also to apply this in other products, you only need to do step 1.Best regards,
NikkoHi hamzakhankhan,
You can skip the child theme part and just directly modify footer.php in the enfold theme line 115, from:
if( in_array( $footer_widget_setting, array( 'all', 'nosocket' ) ) )to:
if( in_array( $footer_widget_setting, array( 'all', 'nosocket' ) ) && is_front_page() )Since you’re not using a child theme, you’ll need to re-add this code every theme update.
Best regards,
NikkoHi berndklare,
Please remove the code I gave before and use this one instead:
.html_header_top.html_header_sticky #header { box-shadow: 0 0 0 1px #d5a369; transition: box-shadow 0.7s linear; } .html_header_top.html_header_sticky #header.av_header_transparency { box-shadow: none; }Hope it helps.
Best regards,
NikkoHi Marco,
The code you posted should not work because it’s commented out.
Using this code:#top .logo img { padding: 0; }It should result into this: https://imgur.com/Bu01zpJ
Best regards,
NikkoHey berndklare,
Can you try adding this CSS code in Quick CSS, located in Enfold > General Styling:
.html_header_top.html_header_sticky #header { border-bottom: 1px solid #d5a369; } .html_header_top.html_header_sticky #header.av_header_transparency { border-bottom: none; }Best regards,
NikkoHi ilkbaharkunduzu,
When you saved the permalinks htaccess file is refreshed/recreated which most likely is the cause of the issue.
Anyway, we’re glad that this is resolved :)
Let us know if you need further assistance.Best regards,
NikkoHi Hafeez Ullah,
Please do the following (a child theme is required, if you don’t have one yet please download and follow instructions in https://kriesi.at/documentation/enfold/child-theme/ ):
1. Copy enfold’s footer.php to the child theme.
2. Modify footer.php (child theme) in line 115:if( in_array( $footer_widget_setting, array( 'all', 'nosocket' ) ) )to this code:
if( in_array( $footer_widget_setting, array( 'all', 'nosocket' ) ) && is_front_page() )Let us know if it helps.
Best regards,
NikkoJanuary 11, 2021 at 8:18 am in reply to: Removing white space between header and hero image on mobile #1271512Hi Nikole,
We’re glad to hear that :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi doug1234,
We’ll be closing this thread then.
If you need further assistance, just open up a new thread.
Thanks for using Enfold and have a great day!Best regards,
NikkoHi shihanze,
No worries, we’ll just be closing this thread.
Best regards,
NikkoHi Robyone925,
Can you give us a link to your site? so we can inspect it and try to give you some CSS codes that should fix it.
Best regards,
NikkoHey vivienne2020,
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
( to 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 an admin user and post the login credentials in the “private data” field.Best regards,
NikkoHi Almudena,
Thanks for providing the staging site.
I have set Disabling of template builder elements to Always load all elements and it worked properly on your site.
Please review your site :)Best regards,
NikkoHi Pascal,
You’re welcome :)
If it’s the same hosting and using the same plan then most likely the same issue will appear.
I have tried some hosting providers but I did not experience any issue even though it’s some cheap plans.
The server settings and restrictions are too limited, fortunately, migrating/cloning it using Duplicator worked well.Best regards,
NikkoJanuary 11, 2021 at 5:19 am in reply to: CSS code to add a background color to a special heading element #1271474Hi Rosanna,
I apologize for the delayed response.
The code I gave did work on the Enfold setup/site that I have, can you give us a link? the woocommerce product page that you are referring.
I’m just speculating but I think the problem might be caching if the CSS code is not fetched on the frontend of your site.Best regards,
NikkoHi Maskenzauber,
Can you give us the thread where we have posted this solution?
Also, we are trying to help you by giving you the solution which is just changing the div to span, and since we don’t have access to your site, we just state the solution.Best regards,
NikkoHi Danny,
Do you want to give different results depending on the user role?
If yes, then you can use if-else conditions then base it on Roles and Capabilities: https://wordpress.org/support/article/roles-and-capabilities/
Otherwise, you need to filter it based on the page where the user is on then use Conditional Tags: https://codex.wordpress.org/Conditional_TagsBest regards,
NikkoHi Marco,
I apologize for the delayed response and thanks for giving us admin access.
I could see that Header Size is working properly, I just add this CSS code in your Quick CSS:#top .logo img { padding: 7px; }Best regards,
NikkoHey PGerousse13,
Thanks for giving us the link.
You can either add this code in Quick CSS (Located in Enfold > General Styling):#footer #avia_socialcount-3 { display: none; }Or you can go in Appearance > Widgets and remove it from there.
Best regards,
NikkoHi André,
For the footer, I could not see any js error and the theme is updated.
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
( to 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 an admin user and post the login credentials in the “private data” field.Best regards,
NikkoHi mbesh,
Can you give us the username as well?
Best regards,
NikkoHi bemodesign,
Can you try to re-install both WordPress and Enfold?
Best regards,
NikkoHi Marco,
Thanks for the screenshot, I could not understand the language but I think Header Size is Dimensione Titoli, if you set it’s value to Custom Pixel Size (I’m not sure about the translation) and another field should appear where you can set its value.
Can you give us a screenshot or mockup of how you want it to look like, maybe we can give you some CSS code that might help.Best regards,
NikkoHi Audrey,
We’re glad that it worked :)
Please replace the last code I gave with this one:add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 ); function enfold_customization_modify_thumb_size( $size ) { $size['portfolio'] = array('width' => 990, 'height' => 800, 'crop' => false); $size['entry_with_sidebar'] = array('width' => 800, 'height' => 600, 'crop' => false); return $size; }Then re-upload the images or regenerate them.
Best regards,
NikkoHi connect4consulting,
Thanks, I have checked it and it seems to be large and centered, please check the screenshot in private content.
Best regards,
NikkoHi ofekw,
We’re glad that we could help :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi connect4consulting,
Thanks for giving us a link, however, the logo shows up as a missing image, please check.
As for the logo size, please try to upload a larger version.Best regards,
Nikko -
AuthorPosts
