Hello NeilJc,
yes, it possible.
- First of all, create the homepage or index page of your website.
- Second, go to the homepage at bottom right (Header visibility and transparency) and select Transparent & Glassy Header from drop down menu. Don’t forget to put the update button. See the link http://imgur.com/a/UeQEf
- Third, create a slider with photos and contents.
- Finally, you can put some CSS code. Go to Enfold Theme Options -> General Styling -> Quick CSS and put that code for add grey border bottom
#top .av_header_glassy.av_header_transparency #header_main {
border-color: transparent;
border-bottom-color: rgb(125, 125, 125);
border-bottom-width: 1px;
border-bottom-style: solid;
}
Thank you. I hope this may help you.
I found this reply on another thread:
reply
Would this help?
-
This reply was modified 8 years, 11 months ago by
mynick.
The big problem is that it doesn’t show nicely on a laptop, in responsive mode.
View post on imgur.com
Only if you reduce the size to 80% it looks ok, actually how it should look like. But it needs to be like that at 100% as well or at least the text positioning shouldn’t change!
Same thing for the header: if I change the position of the text layers to fit it to lap top screen, it doesn’t fit anymore to a bigger, computer screen, meaning the positioning there obviously looks different/wrong.
Appreciate the help, we need to change this asap.
(Login in upper post is wrong, please see correct one below)
Kind regards
Aline
There are numerous threads about Enfold not displaying product images on the product page or displaying blurred images after updating to WooCommerce 3.0.1.
Many times it has been posted to add a CSS rule to the quick css fields in Enfold and/or to regenerate the images. Kriesi’s support team is doing an awesome job however the advice to apply the CSS rule or to regenerate images is wrong. The regeneration of images will cause you more trouble than you might think off because you change dimension of the wrong images (thumbnails). Every time a thumbnail should be loaded WordPress will fetch an image way to large. You may imagine what this means for mobile users and what Google will tell you about your mobile performance.
I can’t emphasize this strong enough: Don’t regenerate your images!
The latest update to WooCommerce 3.0.1 does not solve the image issue on single product pages within Enfold. The update is intended to address the display of the ‘missing featured image’ if no image has been set.
The main issues in Enfold are the usage of a woocommerce template filter (woocommerce_single_product_image_html) that has been removed in WooCommerce 3.0 and the usage of a second filter (woocommerce_single_product_image_thumbnail_html) that has been formerly used only for thumbnails but is now used in general by WooCommerce. I don’t know whether Automattic has informed theme developers about this change nor do I judge anyone for a possible mistake.
Anyway the issues still exists and won’t be solved by WooCommerce. At least not according to my conversation with Mike Jolley because the removed filter is unlikely to return.
Saying this I can only suggest you – as users of Enfold – either stay with WooCommerce 2.4.16 until an update of Enfold will fix the issue or you update to WooCommerce 3.0.1 in combination with the solution I have provided to fix the issue.
To make this clear again: I love Enfold, I highly recommend it to my customers and I have the highest respect for the awesome job the support crew is doing here. And as we are all humans sometimes we are mistaken. This does not reduce the value of Enfold in any way.
Hi Rikard,
Thank you for your feedback. I have solved the problem myself, there was a similar here in another support request.
The solution:
/ * Icon List spacing * /
.avia-icon-list> li {
Margin: 0px! Important;
Padding-bottom: 10px! Important;
}
.avia-icon-list-container {
Margin-bottom: 0;
Margin-top: 0;
}
… and built into the Quick CCS.
Best regards,
Jürgen
Hi Bigi,
Great, thanks for the feedback. Please let us know if you should need any further help on the topic or if we can close it.
Best regards,
Rikard
Guys i told you the issue exists. As much as I appreciate the awesome support of Kriesi’s crew this time they are simply wrong. Nobody seems to listen. The ONLY solution is the one I provided. The CSS hack and the image regeneration lead are wrong and will even cause more issues! So either stay with woo 2.6.14 or update to 3.0 in combination with my solution.
Hi thanks
I have been working on the page “Home” and as you can see the menu can’t be seen when you’re at the top of the page. I would like the menu to be as when you start scrolling down (White background + black font)
@dandelion222 this is by default in Enfold because the lightbox function is missing the .gallery class in the groups property. The script tries to catch the closest group (css class) wrapped around the image that has been clicked on. Unfortunately without .gallery this is .post-entry. The jQuery script will than pick up all images within the div with class .post-entry. You can verify this by adding some more single images to the post content. They all will appear in the gallery popup.
If you have a child theme you could use a monkey patch in a custom jquery script:
(function($){
var _old_avia_lightbox = $.fn.avia_activate_lightbox;
$.fn.avia_activate_lightbox = function( variables ){
if ( ! variables ) {
var variables = {};
}
variables.groups = ['.gallery', '.avia-slideshow', '.avia-gallery', '.av-instagram-pics', '.portfolio-preview-image', '.portfolio-preview-content', '.isotope', '.post-entry', '.sidebar', '#main', '.main_menu'];
return _old_avia_lightbox.call( this, variables );
};
})(jQuery);
Put the code above in a file called mmx.js and put the file in the child theme directory. In the functions.php file of your child you would than add the following lines:
add_action( 'wp_enqueue_scripts', 'mmx_load_scripts', '99' );
function mmx_load_scripts() {
wp_enqueue_script( 'mmx', get_stylesheet_directory_uri() . '/mmx.js', array( 'jquery', 'avia-default' ) );
}
Hi, thanks for your reply.
I don’t see this, the only additional css I’ve added in quick css is:
#top .av_header_transparency {
background: rgba(0, 0, 0, 0.5);
}
#mobile-advanced .mega_menu_title, #mobile-advanced a {
color: black !important;
}
#mobile-advanced {
background: white;
}
The rest is default, I didn’t change anything except that.
After the last updates we have some troubles with the enfold template:
> On the starting page of http://www.michelle-heimberg.ch is layout problem, the main menu isn’t on the top, there is one small bar before.
> On the login page http://www.michelle-heimberg.ch/wp-admin we get already the first error messages.
We deleted the template and reinstalled it, but without success. WordPress and all plugins are up-to-date.
Thanks for your support.
Hey fedepazm,
First off, thanks for using the Enfold.
Follow the answers below:
1. To add this extra space, use the following custom CSS code at Enfold Theme Options > General Styling > Quick CSS
.form_element input[type=submit]{
margin-top: 40px !important;
}
As you`re using the twitter,facebook, instagram and youtube social icons, to remove the background color on hover, add this custom CSS code:
/* this code will remove the twitter background hover color*/
#top #wrap_all .av-social-link-twitter:hover a {
background: transparent;
color: #aaa;
}
/* this code will remove the facebook background hover color*/
#top #wrap_all .av-social-link-facebook:hover a {
background: transparent;
color: #aaa;
}
/* this code will remove the instagram background hover color*/
#top #wrap_all .av-social-link-instagram:hover a {
background: transparent;
color: #aaa;
}
/* this code will remove the youtube background hover color*/
#top #wrap_all .av-social-link-youtube:hover a {
background: transparent;
color: #aaa;
}
3. The Enfold default font is the Open Sans. I`ve checked your site and the default font is the same.
Best regards,
John Torvik
Hi,
Great, glad we could help and sorry for the problems. Please let us know if you should need any further help on the topic or if we can close it.
Best regards,
Rikard
@ismael, @john please forget about the CSS. This is NOT the problem and it does not solve the main issue. I have described the problem in detail here and recommended a solution for your developers here.
If you need more information just tell Kriesi to contact me. Again: the core issue for the missing image in enfold will not be fixed with any woocommerce update (at least according to my conversation with Mike Jolley) because the filter hook used in Enfold to display the image does not exist anymore.
Hey dchcolorado,
First off, thank you for using Enfold.
To decrease or increase the site width, you can add or remove the values from this rule:
#top {
width: 500px !important;
}
P.S: Add this custom CSS code at Enfold Theme Options > General Styling > Quick CSS
Best regards,
John Torvik
Hi,
Thanks for the feedback :-)
Please let us know if you should need any further help on the topic or if we can close it.
Best regards,
Rikard
Hi,
Please add this code in the Quick CSS field:
#top .main_color .input-text, #top .main_color input[type='text'], #top .main_color input[type='input'], #top .main_color input[type='password'], #top .main_color input[type='email'], #top .main_color input[type='number'], #top .main_color input[type='url'], #top .main_color input[type='tel'], #top .main_color input[type='search'], #top .main_color textarea, #top .main_color select {
color: #fff;
border-color: #fff;
border-width: 2px !important;
background-color: transparent;
}
#top label {
font-weight: bold;
font-size: 0.92em;
color: #fff;
}
.nf-field-description p, .nf-form-fields-required {
margin: 0;
color: #fff;
}
Best regards,
Ismael
Hi!
The items are stack on top of each other. This is the default style on mobile view because there’s no space to accommodate multiple columns on a single row. If you want, you can add another post slider which displays a single item then use css media queries to toggle the sliders’ display properties on desktop and mobile.
// http://kriesi.at/documentation/enfold/hide-menu-itemselements-on-mobile/
Cheers!
Ismael
Hey!
As it turns out the default popup script is not going to work unless you put it right after the closing body tag. Fortunately, there is another script that you can use as an alternative.
Reference: https://gist.github.com/nickcernis/3df74c0c6c18b75cb951
Related thread: https://kriesi.at/support/topic/problem-with-mailchimp-popup/#post-773639
Best regards,
Ismael
Hi, guys
1.- how can i add a padding-top on the submit button?
2.- is there a way to disable the hover color on social links topbar
3.- May i know wich is the default font on enfold 2017? mine is opens sans but doenst look like the original
thanks in advance
regards
Hi there,
I’m trying to use following text in my full width button “Learn more about Services >”.
As soon as I use angle brackets in my button title, the button stops working and it displays only: ‘Learn
Can someone please give me a suggestions on how to add angle bracket to my buttons.
Thank you, Alan
Hey!
There are multiple topics for that if you search.
The solution is provided multiple times already.
Thank you
Cheers!
Basilis
Hey Philipp,
Please refer to this thread for a possible solution.
If you need further assistance please let us know.
Best regards,
Victoria
I currently have an odd problem. While doing some routine updates to my site the gallery view on my site stopped working. While I can still use the list view to find the location of my photos and insert images via html, the advanced editor that makes this theme so easy to use can no longer insert anything from my media gallery.
I have tried disabling all of my plugins and reinstalling the most recent version of WP, but nothing seems to work.
If you can suggest some next troubleshooting steps I would be very grateful.
Thanks!
Ian
Hi Ope_Market,
Please refer to this thread for a possible solution.
If you need further assistance please let us know.
Best regards,
Victoria
Hi!
I am closing the topic
@steffenkraemer we would appreciate to be a bit more polite with others at forums.
Thank you
Regards,
Basilis
Hey Liz,
Please refer to this thread for a possible solution.
If you need further assistance please let us know.
Best regards,
Victoria