-
AuthorSearch Results
-
March 4, 2017 at 2:31 pm #755603
Topic: Widget on the header keeps showing on the left
in forum Enfoldspavli2
ParticipantI added widget to the header with these instructions.
I use this css:
#header.widget {
left: 50%;
padding-top: 0;
position: absolute;
top: 0;
transform: translate(-50%);
z-index: 999;
vertical-align: middle;}
@media screen and (max-width: 1000px) {
#header .widget{
display:none }
}
.helper {
display: inline-block;
height: 100%;
vertical-align: middle;
}widget should be inline with logo on the right side..
What am i doing wrong?
-
This topic was modified 8 years, 11 months ago by
spavli2.
March 4, 2017 at 2:17 pm #755602In reply to: Main menu is transparent and bleeds into logo
Yigit explained in detail what the permission problem might be on Feb 14. and Feb 16., so imo stop bashing the support guys here!
That file should be accessible. It is the dynamic stylesheet of the theme that is being generated when you adjust the options in Enfold theme options. Since it is not accessible, styles are not being applied. That is the cause of the issue.
Reread here: https://kriesi.at/support/topic/enfold-support-login-not-working/
Honestly you should step back a bit and maybe hire somebody who is capable of maintaining a wordpress installation. And/or talk to your hoster why this file gives a 403 and that they should set the permissions so it is accessable (I guess wrong group).
cheers.
March 4, 2017 at 2:15 pm #755600In reply to: Shrinking Header on Tablet / screen landscape mode
see here the thread of mine with Josue Solution (same as above – only with a better name for that fild (js))
https://kriesi.at/support/topic/shrinking-header-on-ipad-does-not-work/#post-575345
March 4, 2017 at 2:08 pm #755599In reply to: Shrinking Header on Tablet / screen landscape mode
what is the problem – you miss the shrinking behavior on tabletts !
so your options are all good but there has to be a fix for it. I only knew one for ipad – if it works with other tabletts i don’t know.Put this to your functions.php of the child-theme:
function include_custom_js_file() { wp_enqueue_script( 'avia-main-child', get_stylesheet_directory_uri().'/js/shrink_fix.js', array('jquery', 'avia-default'), 2, true ); } add_action( 'wp_enqueue_scripts', 'include_custom_js_file', 100 );
copy the code and call it : shrink_fix.js(function($){ $(document).ready(function() { // avia_header_size function initialization avia_header_size(); }); // required auxiliary function for avia_header_size function av_change_class($element, change_method, class_name) { if($element[0].classList) { if(change_method == "add") { $element[0].classList.add(class_name); } else { $element[0].classList.remove(class_name); } } else { if(change_method == "add") { $element.addClass(class_name); } else { $element.removeClass(class_name); } } } // custom avia_header_size function avia_header_size() { var win = $(window), header = $('.html_header_top.html_header_sticky #header'), unsticktop = $('.av_header_unstick_top'); if(!header.length && !unsticktop.length) return; var logo = $('#header_main .container .logo img, #header_main .container .logo a'), elements = $('#header_main .container:not(#header_main_alternate>.container), #header_main .main_menu ul:first-child > li > a:not(.avia_mega_div a, #header_main_alternate a), #header_main #menu-item-shop .cart_dropdown_link'), el_height = $(elements).filter(':first').height(), isMobile = $.avia_utilities.isMobile, scroll_top = $('#scroll-top-link'), transparent = header.is('.av_header_transparency'), shrinking = header.is('.av_header_shrinking'), topbar_height = header.find('#header_meta').outerHeight(), set_height = function() { var st = win.scrollTop(), newH = 0, st_real = st; if(unsticktop) st -= topbar_height; if(st < 0) st = 0; if(shrinking) // in the original one, there's a !isMobile here { if(st < el_height/2) { newH = el_height - st; if(st <= 0){ newH = el_height; } av_change_class(header, 'remove', 'header-scrolled'); //header.removeClass('header-scrolled'); } else { newH = el_height/2; //header.addClass('header-scrolled'); av_change_class(header, 'add', 'header-scrolled'); } if(st - 30 < el_height) { av_change_class(header, 'remove', 'header-scrolled-full'); } else { av_change_class(header, 'add', 'header-scrolled-full'); } elements.css({'height': newH + 'px', 'lineHeight': newH + 'px'}); logo.css({'maxHeight': newH + 'px'}); } if(unsticktop.length) { if( st <= 0) { if(st_real <= 0) st_real = 0; unsticktop.css({"margin-top":"-"+st_real+"px"}); } else { unsticktop.css({"margin-top":"-"+topbar_height+"px"}); } } if(transparent) { if(st > 50) { //header.removeClass('av_header_transparency'); av_change_class(header, 'remove', 'av_header_transparency'); } else { //header.addClass('av_header_transparency'); av_change_class(header, 'add', 'av_header_transparency'); } } } if($('body').is('.avia_deactivate_menu_resize')) shrinking = false; if(!transparent && !shrinking && !unsticktop.length) return; win.on( 'debouncedresize', function(){ el_height = $(elements).attr('style',"").filter(':first').height(); set_height(); } ); win.on( 'scroll', function(){ window.requestAnimationFrame( set_height )} ); set_height(); } })(jQuery);create in your Child-Theme folder a folder called js and upload that shrink_fix.js to it
after that the shrinking header works as on all desktop-pc
March 4, 2017 at 1:41 pm #755595In reply to: Image (link) overlay questions
i found something here on avia.js on line 735
if(outerH > 100) { if(!overlay.length) { overlay = $("<span class='image-overlay "+span_class+"'><span class='image-overlay-inside'></span></span>").appendTo(link); } //can be wrapped into if !overlay.length statement if chrome fixes fade in problem if(link.height() == 0) { link.addClass(_self.className); _self.className = ""; } if(!linkCss || linkCss == 'inline') { link.css({display:'block'}); } //end wrap overlay.css({left:(pos.left - overlay_offset) + parseInt(current.css("margin-left"),10), top:pos.top + parseInt(current.css("margin-top"),10)}) .css({overflow:'hidden',display:'block','height':outerH,'width':(outerW + (2*overlay_offset))}); if(cssTrans === false ) overlay.stop().animate({opacity:opa}, 400); } else { overlay.css({display:"none"}); }but this does not help you i know
March 4, 2017 at 1:31 pm #755593In reply to: Image (link) overlay questions
seems to be a matter of image size ( all-inkl is only 116px of height – all others have more) –
i don’t know where the display: none comes from. maybe there is a height limit for that in code.
you can force to show it by:.image-overlay.overlay-type-extern { display: block !important; top: 0; }but as i see you want to get rid off all overlay effects.
Why is a css solution not wanted by you? give a custom class to those images …March 4, 2017 at 11:09 am #755574In reply to: Footer image overlapping content above
Hey Rikard,
Thanks for that. I already tried it with adding the image to a widget but without any luck. Now I’ve removed the background-image and put the image back in a footer widget. What happens if I use the
position: absolute;is that the image won’t show. If I change it to relative, the image shows but the top and left controls stop working.Regards,
DanielPS: +1 for weekend responses, thanks!
-
This reply was modified 8 years, 11 months ago by
Daniel.
March 4, 2017 at 9:14 am #755557In reply to: Footer image overlapping content above
Hey Daniel,
You won’t able to do that if you set it as a background image. Try adding it to one of your widgets instead and give it an id, then try CSS like this:
#your-image { position:absolute; top:0; left:0; }Best regards,
RikardMarch 4, 2017 at 9:01 am #755551Hi Steven,
Glad you got it working and thanks for the feedback. Please let us know if you should need any further help on the topic.
Best regards,
RikardMarch 4, 2017 at 8:54 am #755545In reply to: header menu color on scrolldown transparent
hi, I am kind of struggling with a similar problem. For example in top position the top header is slightly transparent, perfect. However as soon as I scroll down the top header becomes white, well at least so much that you barely see the back ground. Also menu color being white are not visible any more.
What can I do to keep the same transparency while scrolling as in the top position?
thanks, Jan
March 4, 2017 at 8:51 am #755544In reply to: indent three-column content box
Hi,
Ok, thanks for the feedback. Please let us know if you should need any further help on the topic.
Best regards,
RikardMarch 4, 2017 at 8:15 am #755529Hi,
Great, glad you got it working and 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,
RikardMarch 4, 2017 at 8:12 am #755527In reply to: Section tabs not functioning properly
Hi,
Great, glad you got it working and 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,
RikardMarch 4, 2017 at 8:09 am #755526In reply to: How can I change padding of button?
Hi,
I changed the width to 667 and adjusted the block to the top of the quick css field. It seems to be working now.
Best regards,
Jordan ShannonMarch 4, 2017 at 8:06 am #755524Hi Richard,
Great, glad you got it working and thanks for the nice feedback. Please let us know if you should need any further help on the topic or if we can close it.
Best regards,
RikardMarch 4, 2017 at 7:45 am #755510In reply to: Page TAB Padding
Hey waynerigley,
Please add the following to the quick css question or styles.css file:
.av-layout-tab.av-animation-delay-container.av-active-tab-content.__av_init_open.avia-builder-el-1.avia-builder-el-no-sibling{
vertical-align: top !important;
}.av-layout-tab.av-animation-delay-container.avia-builder-el-9.el_after_av_one_third.el_before_av_tab_sub_section{
vertical-align: top !important;}
To change the active tab:
#top a.av-active-tab-title {
color: #2d5c88; /* Enter your desired color */
}Let me know if this works out for you.
Best regards,
Jordan ShannonMarch 4, 2017 at 7:08 am #755499Hey dirtdiggr,
I can see the information you added to it in the top left hand corner of the image when checking with Chrome. Did you try clearing your browser cache and reload?
Best regards,
RikardMarch 4, 2017 at 6:46 am #755491In reply to: Website not functioning properly
March 4, 2017 at 5:56 am #755476Topic: Masonry Gallery Light box question
in forum Enfoldfreshwebsitesla
ParticipantHi,
1. Is there a way to have the Masonry gallery display only the first 3 images in 3 Columns but when clicking on an image it appears in Lightbox and allows user to scroll through all 20 images in the gallery.? Only want to display the first three on the top with caption at the bottom.
2. Is there a way to display a gallery in a single column down a page. One picture on top of the other stacked.
Thanks in advance.
March 4, 2017 at 5:11 am #755462Hi,
Ok, thanks for the feedback. Let us know if you should have any further problems on the topic.
Best regards,
RikardMarch 4, 2017 at 3:30 am #755447Hi there Andy,
I couldn’t see where to open another question, so hope it’s ok to ask you here:
On our hompage https://www.lewinandreilly.com I recently added a fullscreen slider and a fullwidth easy slider to test which one I liked the look of better. Now if I try and delete one or both of them, it messes up the formatting of all the special headings below. The text changes colour (from white to black), and the font size decreases.
As a temporary work-around, I’ve deleted the picture within the fullscreen slider (so that duplicate content won’t show), and have not deleted the slider, hence the formatting of the special headings below is correctly showing. But I’d like to fully delete the fullscreen slider without losing the special heading formatting below. The slider that started this whole thing playing up is the one that says:
“Supporting Small, Organic Family Farms, Boutique Crops and Indigenous Land Owners
Throughout Australia, New Zealand and the Islands of the South Pacific”I should also point out that the reason I want to delete the fullscreen slider (other than because it’s duplicate content), is because it crashes our homepage on mobile. This happened before when we had more than 6 fullscreen sliders in our shop, and on our products pages.
Is this a problem that wil be fixed soon, that other customers have commented on?In a separate matter, I would also like to change the default pink colour that’s available for button colours in the fullscreen sliders. We’d like to change it in the CSS to overwrite the default pink each time to #e0607e is this possible please?
I can’t use this colour in the fullscreen sliders currently, because there isn’t a custom colour option unfortunately.Lastly, in another separate matter, I was wondering how to stop the sticky header from formatting incorrectly on mobile. We are using Thrive Leads – the top ribbon as our way of collecting emails on mobile devices, but when you click the “x’ to remove the ribbon and continue browsing the site, the sticky header remains sticky at a lower point o the page, because the ribbon has pushed it down. I hope that all makes sense. Basically, we want to keep the sticky header, but have it stay at the very top of the page on mobile once the ribbon CTA is gone.
Please tell me if I need to provide new login details.
My email is now (Email address hidden if logged out)
-
This reply was modified 8 years, 11 months ago by
lewinandreilly.
March 4, 2017 at 3:23 am #755446Topic: Page TAB Padding
in forum Enfoldwaynerigley
ParticipantWas nice to see the addition of the “TAB” in Layout Sections, this is a great way to remove several pages and stop hiding them in subpages in the menu bar. my problem is that Tab 1 has half a screen padding and the text is wayyyy down on the screen, same as Tab 2 but Tab 3 looks fine!
I’ve gone thru the padding options on the tab settings but all looks good, anyone else have this issue > need help to figure this out!
see what I mean here! https://519itsolutions.com/info/
Would also be nice to have the selected tab font the same color ! not liking the hidden text on a colored back end.
March 4, 2017 at 2:49 am #755444In reply to: Show different featured image slider on mobile
Hi Jordan and thanks for the answer. Unfortunately there is only the option to hide the content on mobile, in this case I have a single slider on mobile but there are still two on desktop version. Can you help me? Thanks
March 4, 2017 at 1:50 am #755439Hi Ismael,
Yes the culprit was a plugin “Indeed PopUps”
I have replaced the need for this plugin by using this code
https://kriesi.at/support/topic/code-snippet-inline-post-content-popup-magnific-popup-shortcode/
you can consider this closed.
thanks for the great support.
March 4, 2017 at 1:49 am #755438Topic: Enfold shows different version to the actual one installed
in forum Enfoldjlgarcia
ParticipantI have one website using Enfold that for some reason I can’t update using the WordPress button for that, and I have to use ftp to update the website. The thing is that the update screen in WP tells me that I need to update the theme from v 3.8.5 to 4.0.2 and the theme options > Theme Update screen says I don’t need to update, because I’m running the latest version.
I have more Enfold websites in another server that update correctly using the WP button for that. The problem is with this host provider only.
The problem as I see is, how to tell WP that it is using the latest version so it stops telling me to update? I did that ftp updating before and it didn’t persisted this notice.Thanks for any help.
March 4, 2017 at 1:39 am #755437In reply to: Slider Does not Respond on Big Screens?
Hi,
There’s a background image that you can set on every slide. You can see that on top of the slider preview of layerslider wp.
Best regards,
NikkoMarch 4, 2017 at 1:11 am #755427In reply to: Enfold Google Map Widget – Full Width
I got the same problem.
The google maps widget was earlier shown in full width, after following custom CSS instructions on this post:
https://kriesi.at/support/topic/google-maps-full-width/Now since some time for some reason, the widget will not show in full widt anymore. I checked the custom CSS & widget details & details of the color section several times. It is exactly like instructed, except it doesn’t show fullwidt on front-end.
Did perphaps something changed in theme updates? I would very much appreciate it if you could help me out in this matter.
Thanks in advance!March 4, 2017 at 12:43 am #755423In reply to: Mobile Hamburger Menu & Sticky Header Opacity
Hi Jordan
Thanks for your message.
On this site the desktop hamburger reverts to the old mobile menu and mobile menu icon in mobile view. I was hoping that Enfold might change this behaviour to feature the new hamburger menu on all screen views.
Is there a workaround possibly to retain the new burger icon and menu on all screen views?
Thanks!
Christian Jaroljmek
March 4, 2017 at 12:30 am #755417In reply to: author box
Hey esliran,
I suggest checking for a plugin solution like:
https://wordpress.org/plugins/fancier-author-box/
https://wordpress.org/plugins/wp-author-box-lite/More:
Best regards,
Jordan ShannonMarch 4, 2017 at 12:25 am #755415In reply to: Show different featured image slider on mobile
Hey aka-alex,
You can add two slider sections in the advanced editor, and simply choose to hide one on the desktop, while hiding the other on mobile.
Best regards,
Jordan Shannon -
This topic was modified 8 years, 11 months ago by
-
AuthorSearch Results
-
Search Results
-
Hi,
1. Is there a way to have the Masonry gallery display only the first 3 images in 3 Columns but when clicking on an image it appears in Lightbox and allows user to scroll through all 20 images in the gallery.? Only want to display the first three on the top with caption at the bottom.
2. Is there a way to display a gallery in a single column down a page. One picture on top of the other stacked.
Thanks in advance.
Topic: Page TAB Padding
Was nice to see the addition of the “TAB” in Layout Sections, this is a great way to remove several pages and stop hiding them in subpages in the menu bar. my problem is that Tab 1 has half a screen padding and the text is wayyyy down on the screen, same as Tab 2 but Tab 3 looks fine!
I’ve gone thru the padding options on the tab settings but all looks good, anyone else have this issue > need help to figure this out!
see what I mean here! https://519itsolutions.com/info/
Would also be nice to have the selected tab font the same color ! not liking the hidden text on a colored back end.
I have one website using Enfold that for some reason I can’t update using the WordPress button for that, and I have to use ftp to update the website. The thing is that the update screen in WP tells me that I need to update the theme from v 3.8.5 to 4.0.2 and the theme options > Theme Update screen says I don’t need to update, because I’m running the latest version.
I have more Enfold websites in another server that update correctly using the WP button for that. The problem is with this host provider only.
The problem as I see is, how to tell WP that it is using the latest version so it stops telling me to update? I did that ftp updating before and it didn’t persisted this notice.Thanks for any help.
