Forum Replies Created
-
AuthorPosts
-
Hey J,
It appears the padding is set in the backend from the column edit options.
Please check and let us know.
Best regards,
VinayHey Bianca Elsworth,
I understand the issue is urgent, we would like to help you with it please write to us using the support forum or open a new ticket if your previous ticket is closed.
Best regards,
VinayJune 29, 2018 at 2:44 am in reply to: Image logo with subtext – on mobile and tablett displays over burger #979161Hi,
Thank you for your patience and great job so far. This type of customization usually takes time because it is specific to your site. Usually, we recommend hiring a freelancer as it is out of our support scope but we do try our best to help you as we like to keep our customers happy :)
1. I have adjusted the header height, logo and widget margins to make it overflow.
2. Please enable CSS and JS merging once the customization is process is completed. Else the new changes made will not show on the frontend.
3. You can access the functions.php file via FTP in case the same issue continues.
4. Widget text can be styled using custom CSS in the child theme styles please scroll to line 309 or look for /* Widget Text */.
5. You have some duplicate styles for the menu in theme options Enfold > Advanced Styling > Please remove duplicates.
6. The “Zahohie” logo title was added in the widget title area, I have moved it to the widget text area and styled using CSS.Hope you are happy with the logo overflow :)
Let us know if you have any issue related to Enfold we are happy to help you!
Best regards,
VinayHi,
Would you mind providing a precise link to the page, showing the elements in question? We need to be able to inspect them in order to help :)
Best regards,
VinayHi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
CSS Snippet:
/* CSS - Easyslider navigation arrow */ #top .av_slideshow_full.av-control-default .next-slide:before, #top .av_slideshow_full.av-control-default .prev-slide:before { line-height:50px; } #top .avia-slideshow-arrows a { max-height:50px; } #top .avia-slideshow-arrows a.next-slide { transform: translateY(150px); left:100px; } #top .avia-slideshow-arrows a.prev-slide { transform: translateY(150px); left:50px; } /* End CSS */
Best regards,
VinayJune 28, 2018 at 3:08 am in reply to: Having the header logo showing on top of secondary menu above #978673Hey emanuelecocchiaro,
I have added the below CSS to quick CSS
/* Overlap logo */ #top #header #header_meta { z-index: 1!important; } #top #header .logo { z-index: 100!important; margin-top: -20px; }
Best regards,
VinayJune 28, 2018 at 2:48 am in reply to: Image logo with subtext – on mobile and tablett displays over burger #978668Hi,
1. For testing purpose, I have disabled CSS and JS merging from Enfold > Performance tab.
2. Please remove the code to add subtext from the child theme functions.php file.
3. Remove the old CSS which you posted in the previous ticket. I have added new CSS in child theme styles.css.
4. Create a header widget area by adding the below code to the bottom of the functions.php file.//-------------------------------- // Header widget area //-------------------------------- add_action( 'ava_after_main_menu', 'enfold_customization_header_widget_area' ); function enfold_customization_header_widget_area() { dynamic_sidebar( 'header' ); }
Unfortunately, the functions.php file is not editable for me. Please create a header widget area and get back to us so we can help you with the logo overflow issue.
Best regards,
VinayHi,
Please activate the burger menu just before the menu touches the logo at around 1300px width of the browser window.
/* Activate burger menu */ @media only screen and (max-width: 1300px) { #top #header .av-main-nav > li.menu-item { display: none!important; } #top #header .av-burger-menu-main { cursor: pointer; display: block!important; }}
For more tips please check https://kriesi.at/documentation/enfold/menu/#-menu-overlaps-logo-on-tablet
Best regards,
VinayHi,
Please upload a screenshot/mockup to one of the below sites and share the link here so we can help you better :)
https://snag.gy/
https://ctrlv.cz/en/
https://imgur.comBest regards,
VinayHi,
I tried to troubleshoot this issue but the login credentials you provided do not work for me.
I have customized the code for you please remove the previous code and try the below CSS
1. How to I get the 2 logos to align with the container for the page
By default, the logo and widget should automatically align to the width of the page container unless some change has been made. Please check the theme options Header > Header Behavior > Let logo and menu position adapt to browser window is checked? You can also define a custom header width (Please check the header section of the docs for code snippets).2. What kind of CSS should I use to make the logo in the widget area adjust in size to become responsive
After the code is added the logo and the widgets show up in the original image size provided there is enough space available. If there isn’t much space available the images are auto re-sized proportionately to fit in the available space. To increase or decrease the width of the images a “flex-basis” value can be specified.3. On tablet portrait and mobile portrait mode in the customise view the logo is moving to the right and forcing the widget down
This issue is fixed in the below code :)/*-------------------------------- Widget area on the right ---------------------------------- CSS Settings . Flexbox support . Settings . Header . Logo . Menu . Cart Icon . Social Icons . Header Widget --------------------------------/* /*-------------------------------- Enable Flexbox Support to the header elements. --------------------------------*/ /* Header */ .responsive #top #header, /* Top bar */ .responsive #top #header #header_meta, /* Search icon */ .responsive #top #header #menu-item-search a, /* Shopping cart */ .responsive #top #header a.cart_dropdown_link, /* Social icons */ .responsive #top #header #header_main nav .social_bookmarks, /* Logo */ .responsive #top #header #header_main .inner-container .logo, /* Main menu area including the main menu (with search and burger icons), cart and social icons */ .responsive #top #header #header_main .inner-container .main_menu, /* Widgets */ .responsive #top #header #header_main .inner-container .widget, /* Header inner container */ #top #header #header_main .container.av-logo-container .inner-container { position: relative; display: flex; flex-wrap: nowrap; } /*-------------------------------- Settings: flexbox order, width, height and alignment for header and header elements ----------------------------------*/ /* Top bar */ .responsive #top #header #header_meta { order: 0; flex-grow: 0; flex-basis: 100%; } /* Header */ .responsive #top #header #header_main { order: 0; flex-grow: 0; flex-basis: 100%; } /* Header inner container */ #top #header #header_main .container.av-logo-container .inner-container { order: 0; flex-grow: 0; flex-basis: auto; flex-direction: row; /* Vertical alignment */ align-content: center; /* Horizontal alignment */ justify-content: space-between; height: inherit; } /* Logo */ .responsive #top #header #header_main .inner-container .logo { order: 1; flex-grow: 0; flex-basis: auto; } /* Main area: Menu with siblings cart and social icons */ .responsive #top #header #header_main .inner-container .main_menu { order: 2; flex-grow: 0; flex-basis: auto; align-items: center; align-self: center; justify-content: flex-end; } /* Menu: Menu items with search and burger icon */ .responsive #top .av-main-nav #avia-menu { order: 0; align-items: center; align-self: center; flex-grow: 0; flex-basis: auto; } /* Search icon */ .responsive #top #header #menu-item-search a { order: 0; flex-grow: 0; flex-basis: auto; } /* Shopping cart */ .responsive #top #header a.cart_dropdown_link { order: 0; flex-grow: 0; flex-basis: auto; } /* Social icons */ .responsive #top #header #header_main nav .social_bookmarks { order: 0; flex-grow: 0; flex-basis: auto; } /* Widgets */ .responsive #top #header #header_main .inner-container .widget { order: 3; flex-grow: 0; flex-basis: auto; align-items: center; align-self: center; justify-content: center; margin-left: auto; } /*-------------------------------- Header --------------------------------*/ /* Header */ .responsive #top #header #header_main { padding: 30px 0; } /* Main Header */ .responsive #top #header #header_main, .responsive #top #header #header_main .container.av-logo-container { height: inherit; /*background: aquamarine;*/ } /* Header container height */ .responsive #top #header #header_main .container.av-logo-container .inner-container { position: relative !important; } /*-------------------------------- Logo --------------------------------*/ /* Logo image size */ .responsive #top #header .logo, .responsive #top #header .logo a, .responsive #top #header .logo img { /* Logo Width and alignment */ width: 100px; max-width: auto; align-items: center; align-self: center; height: auto; justify-content: center; } /*-------------------------------- Menu --------------------------------*/ /* Main area: Menu with siblings cart and social icons */ .responsive #top #header #header_main .inner-container .main_menu { /*flex-wrap: nowrap;*/ } /* Meun: Menu items with search and burger icon */ .responsive #top .av-main-nav #avia-menu { } /* Menu style */ #top #header #avia-menu a .avia-menu-text { color: #222; font-size: 18px; } /* Menu hover color */ #top #header #avia-menu .menu-item:hover>a>.avia-menu-text { color: #20f; } /* Activate burger menu */ @media only screen and (max-width: 1280px) { #top #header .av-main-nav>li.menu-item { display: none!important; } #top #header .av-burger-menu-main { cursor: pointer; display: block!important; } } /*-------------------------------- Cart Icon ----------------------------------*/ /*-------------------------------- Header Social Icons ----------------------------------*/ /* Main menu social icon alignment fix */ /* Flex support and position fix */ .responsive #top #header #header_main nav .social_bookmarks { display: flex; top: auto; margin-top: 0; align-items: center; } /* Inherit height for flex alignment */ #top .av-logo-container .social_bookmarks li { height: inherit; } /*-------------------------------- Header Widget --------------------------------*/ /* Reset default theme styles */ .responsive #top #header #header_main .inner-container .widget { padding: unset; clear: none!important; margin-left: 10px; } /* Widget Text */ .responsive #top #header #header_main .inner-container .widget p { font-size: 11px; line-height: 14px; text-transform: uppercase; letter-spacing: .35em; color: #222; padding:0 10px; }
Best regards,
VinayHi,
I tried to troubleshoot this issue but the login credentials you provided do not work for me. Would you mind checking once again and then send us working login credentials?
The user role for the account you send us should be set to ‘administrator’ so we can try to disable all plugins and add custom code (if necessary) to resolve the issue.
Your credentials should include:
1. WordPress admin Login URL
2. Username
3. PasswordBest regards,
VinayHi,
It is difficult to provide the solution without inspecting the element, thanks for your understanding. I tried to troubleshoot this issue again but the login URL/credentials you provided do not work for me. Would you mind checking once again and then send us working login credentials?
Best regards,
VinayJune 19, 2018 at 1:07 pm in reply to: My website is hacked after giving admin access to your team #974762Hi,
Sorry to hear that your website is compromised. I assure you the information shared by all our clients in private content area is kept confidential and handled by authorized professionals only to help you resolve the issue.
We respect your privacy, incase you wish not to share the credentials. You can also use 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 wordpress@kriesi.at ), as well as the > Role > making that the highest possible and set the link to expiry in about three to four days.
- Click > Submit.
- You’ll now have a temporary account.
When your issue is fixed, you can always remove the plugin!
A website pointing to an unknown URL is usually seen in sites with very less or no security at all. Such websites are an easy target for hackers and bots to gain access and take advantage. Some of the security steps you should immediately consider are:
1. Scan your site with a good WordPress security and antivirus plugin or ask your hosting company to check for any scripts that may be the reason for this issue.
2. Install a Firewall on your site.
3. Secure your WordPress login page.
4. Disable directory browsing.
5. Disable access to WordPress backend from an unknown IP address.If none of the above help you please go ahead and re-install the theme and plugins files and secure your website. For more information please check the FTP install guide.
For more helpful tips please check the links provided by @victoria and also check the term “WordPress better security” on Google.
Always backup your website and perform the changes :)
Best regards,
Vinay-
This reply was modified 7 years ago by
Vinay.
Hi,
I checked your site on IE 11 and it works perfectly fine.
You may not see the changes until the cached files are cleared in your browser.
Please perform the below steps to clear the browser cache:
1. Disable “merging and compression” for CSS and JS files from Enfold > Performance.
2. If a caching plugin is installed check the plugin settings and clear the cache and deactivate the plugins for testing purpose.
3. Hard refresh by pressing Ctrl + Shift + F5 on your browser or press the F12 key to open chrome dev tools and right click on the refresh button and select “Empty Cache and Hard Reload”.
4. If you have installed any browser extensions/plugins please disable it for testing purpose.Best regards,
VinayHi,
Steps to add the function code:
1. Go to Appearance > Editor in your WordPress dashboard.
2. Select the correct theme or child theme from the select theme option on top.
3. After selecting the correct theme, you may notice a lot more files depending on the theme you have. Browse the file “Theme Functions” or “functions.php”. ( You can also use an FTP client and navigate to wp-content\themes\enfold-child\functions.php )
4. Add the code to the bottom of the functions.php file as shown in the below example.Then the below CSS was added to your child theme’s style.css file:
CSS Snippet:
/* Display tag line widget */ #top #header #header_main .inner-container .widget { order:2; margin-right: auto; padding:0; /* Vertical align */ display: flex; align-items: center; /* Text style*/ font-size: 9px; line-height: 0; text-transform: uppercase; letter-spacing: .35em; color: #000; }
I have disabled the CSS and JS merging to avoid caching issue please enable it when you are done with the modification.
NOTE: There is no easy way to place the text exactly at the start of the paragraph as you mentioned. Unfortunately, it would require quite some time and customization of the theme to achieve this, so I am sorry to tell you that this is not covered by our support. However, if it’s really important for you to get this done, you can always hire a freelancer to do the job for you :)
Best regards,
VinayHi,
I’m sorry to say that there is nothing visible on the link you provided.
Please try to upload the background image from Enfold > General Styling > Logo Area and select option:
Position of the image: Top Center
Repeat : Tile Horizontally or No repeat if you have a large image that can cover the whole screen.
Attachment: ScrollBest regards,
VinayHi,
The link does not work for me. 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,
VinayHi,
Thank you for your understanding. It still requires quite a lot of customization to achieve the header layout as described above.
1. Go to Enfold > Header > Header Layout > Menu and Logo position > Logo left, menu below
Now you have the logo on top and main menu at the bottom which can handle the mega menu.2. Add a header widget area as mentioned here https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
3. Position the header widget to the right using the custom CSS.
4. You can add HTML code for the menu in the widget area and style it using custom CSS.
Please check this link for menu examples https://codepen.io/search/pens?q=horizontal%20menu&page=1&order=popularity&depth=everything&show_forks=falseI am very sorry to tell you that this type of customization is not covered by our support.
I hope you will find the above links helpful.
Best regards,
VinayHi,
Yes it’s possible to move the background image position using CSS.
You can also try changing the background color for the menu bar from solid green to a black background color.
/* Main menu background color */ #top #header_main_alternate { background-color: #000!important; }
This is what I see on my end so I’m unable to investigate your issue.
Would you mind providing a precise link to the page, showing the elements in question? We need to be able to inspect them in order to help :)
Best regards,
VinayJune 11, 2018 at 6:14 pm in reply to: HELP NEEDED: Equal Height Columns break + sometimes changes don't save #971328Hi,
Sorry for the delay, Yes creating all the pages from scratch does not make any sense.
For testing purpose, please enable debug mode by adding the code provided in this link to your functions.php file which can be accessed from Appearance > Editor
This lets you view the shortcode for all the pages.
Copy the shortcode from a page and save it as a test page.
Let us know if this help!
Best regards,
Vinay-
This reply was modified 7 years, 1 month ago by
Vinay.
Hi,
I checked this setup on my local installation. If you need to use the mega menu in both main menus below are the two options:
1. Try using a mega menu plugin like the uber menu (or use any third party plugin) in both places https://sevenspark.com/docs/ubermenu-3/theme-integration/enfold. This method will allow you to have two main menus which can support mega menus. Since both menus will look the same, you do not have to custom style it to match one another.
2. Create a header widget area and add a mega menu plugin as a widget and style it to match the enfold menu (this will need a lot of extra CSS to match both mega menus). unfortunately, this is not covered by our support. However, if it’s really important for you to get this done, you can always hire a freelancer to do the job for you :)
Best regards,
VinayJune 11, 2018 at 3:15 pm in reply to: Create category based post colors in overview & excerpt on hovering over posts #971232Hey Happy Enfold User,
Please try using a masonry element, as you can see in the below example we have used category names to style posts to look different using CSS.
For instructions to reproduce the same results please check https://kriesi.at/documentation/enfold/blog-post/#using-categories-to-style-masonry-blog-grid
Let us know if this helps you :)
Best regards,
VinayHi,
Thank you for sharing the screenshots.
Yes, it is possible to make the header look similar to your mockup https://snag.gy/dugNhq.jpg
1. Please upload your logo from the theme options: Enfold Options > Logo
2. Upload the header background image from: Enfold > General Styling > Logo Area
3. To activate Burger/Icon menu for desktop go to Enfold > Main menu > General > Menu Items for Desktop and select Icon menu.Lastly to adjust the spacing above and below the logo please check https://kriesi.at/documentation/enfold/logo/#space-above-and-below-the-logo
Feel free to adjust the numeric values in the CSS code to suit your design.
If you have any issue please write back to us here so we can help you achieve the design similar to the mockup you shared.
Best regards,
VinayHey S.!
Thank you for writing to us.
We will add more examples and shortcodes to our documentation.
Your feedback and suggestions are most welcome :)Cheers!
VinayHi,
The widget CSS is causing a conflict with the image overlay. I have added the below CSS in Enfold > General styling > Quick CSS to hide the image overlay.
#top .overlay-type-extern.image-overlay .image-overlay-inside:before, #top .overlay-type-extern.image-overlay .image-overlay-inside, #top .image-overlay .image-overlay-inside, #top .image-overlay .image-overlay-inside:before { display: none!important; opacity: 0 !important; background:transparent!important; }
Best regards,
VinayHi,
Thank you for getting back to us. From what I remember seeing the site last time it has changed a bit and looking nice :)
This is a complicated approach to add two menus. In this approach, the drawback is that you need to load your header.php file from child theme or else the changes will be overwritten when you update the theme. Since we are constantly releasing updates anytime there is a change in the header.php file you have to re-import it.
A much easier way would be to add a navigation widget to the header widget area and style it accordingly.
Please share a screenshot/mockup of the end result you are looking for it will help me assist you better.
https://snag.gy/
https://ctrlv.cz/en/
https://imgur.comI may also require your login details to set things up for you please share credentials in private content area.
Best regards,
VinayJune 8, 2018 at 1:06 am in reply to: Quick CSS new rules don't work when CSS performance settings are enabled #969895Hi,
You may not see the changes until the cached files are cleared in your browser.
Please perform the below steps to clear the browser cache:
1. Disable “merging and compression” for CSS and JS files from Enfold > Performance (I believe you already did this).
2. If a caching plugin is installed check the plugin settings and clear the cache and deactivate the plugins for testing purpose.
3. Hard refresh by pressing Ctrl + Shift + F5 on your browser or press the F12 key to open chrome dev tools and right click on the refresh button and select “Empty Cache and Hard Reload”.
If you still cannot see the changes please check if you are using a CDN like cloudflare and deactivate it.
Best regards,
VinayHi,
Glad we could help!
Please take a moment to review our theme and show your support https://themeforest.net/downloads
Don’t forget to bookmark Enfold Documentation for future reference.Thank you for using Enfold :)
Best regards,
VinayHi,
Glad it’s fixed for you!
Don’t forget to bookmark Enfold Documentation for future reference.Thank you for using Enfold :)
Best regards,
VinayHi,
Thank you for writing back to us with correct credentials. I was able to check your site. Since you had some custom styles for rounded corners already I had to use extra CSS to overwrite your code.
I have added this code to to your child theme’s style.css file:
CSS Snippet:
/* CSS - Rounded corners */ #top #header, #top #header_main, #top #header .header_bg, #top #header .container.av-logo-container, #helpyou { border-radius:25px; } #top #header_main, #top #header .header_bg { background:#FFF!important; } #top #header .container.av-logo-container { background:#047a41!important; } #top #main { background: #fff!important; } /* End CSS */
Best regards,
Vinay -
AuthorPosts