Viewing 30 results - 89,461 through 89,490 (of 142,844 total)
  • Author
    Search Results
  • #698630

    In reply to: Validations

    on every enfold page i disable the autop function of wordpress this closing p-tag is gone.
    without that little fault (and it is not a fault of enfold i think – Enfold Pages are html5 valide

    #698624

    Here you go. It appears to (also?) be a browser issue; when I test on my Surface (either Chrome or MS Edge) it shows the blue letters, as does MS Edge on my desktop. However, when I use Chrome on my desktop the letters are white as expected. Can’t really put my finger on it.

    #698621

    Hi!

    Please remove the sidebar modifications in the functions.php and Quick CSS field. Add this code in the functions.php.

    // adjust settings on init
    add_action('init','ava534345953_init', 50);
    function ava534345953_init() {
    	add_action( 'woocommerce_after_single_product_summary', 'avia_add_sidebar', 25);
           remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 10 );
    	remove_action(    'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 1 );
    	add_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 20 );
    }
    
    function avia_close_image_div() {
    	echo "</div>";
    }
    
    function avia_add_sidebar() {
    	if(is_product()) {
    	$avia_config['currently_viewing'] = "shop_single";
    	get_sidebar();
    	}
    }

    And this code in the Quick CSS field:

    .single-product-main-image {
        width: 25%;
    }
    
    .single-product-summary {
        overflow: hidden;
        width: 45%;
        float: left;
        margin-right: 5%;
    }
    
    .single-product .sidebar {
        width: 25%;
    }
    
    #top div.product .woocommerce-tabs {
        width: 75%;
        float: left;
    }

    Best regards,
    Ismael

    Hi,

    Thanks for the feedback @aerobis

    Please let us know if you should need any further help on the topic.

    Best regards,
    Rikard

    #698605

    Hi,

    Glad you figured the desktop version and thank you for sharing the example site. Would you mind providing a precise link to your site, showing the elements in question? We need to be able to inspect them in order to help :)

    Best regards,
    Vinay

    #698598

    Hi!

    Apply a minimum height to the description containers.

    #top .inner_product_header {
        min-height: 178px;
    }

    Regards,
    Ismael

    #698596
    frankhamm
    Participant

    Hallo,

    ich hatte vor einiger Zeit schonmal einen entsprechenden Threat aufgemacht

    https://kriesi.at/support/topic/angebot-button-verdeckt-teilweise-text/#post-619083

    und dachte auch das die dort empfohlene Änderung das Problem löst.

    Jetzt sehe ich aber beispielsweise

    http://kaster-schwollen.net/produkt/boeckmann-dreiseitenkipper-dk-al-321827-mit- elektr-hydraulik

    Kann man den „Angebot-Button“ vielleicht woanders platzieren? Der hängt bei
    langen Bezeichnungen irgendwie in der Überschrift… Beispielsweise unterhalb der Überschrift oder besser noch die Überschrift vor dem Button umbrechen

    Ich denke da muss analog zu der Lösung in dem Andren Threat eine entsprechende Custom CSS Anweisung eingefügt werden.
    Irgendwas mit der Klasse class=”product_title entry-title” Aber wie genau weiss ich leider nicht.

    Wäre da wirklich dankbar für ne Lösung

    lg aus dem Westerwald

    Frank Hamm

    • This topic was modified 9 years, 5 months ago by frankhamm.
    #698591
    Yorivan
    Participant

    hello there. this is my first in forum. i got a problem hide element for mobile and desktop. i have read and tried follow intructions from this link : http://kriesi.at/documentation/enfold/hide-menu-itemselements-on-mobile/ and
    https://kriesi.at/support/topic/how-to-hide-some-elements-in-mobile-version/#post-362263

    but nothing happen with my element when i opened at mobile as well as desktop.

    is there any help for me? thanx.

    #698569
    Jojo_W
    Participant

    On a page on my site I have two sections. Both sections end with a button. The button in the top section is aligned to the left. The bottom one does not align left as it is designated to. It appears to be going off the page on the right side. Help.

    THANK YOU!!!!

    #698556

    Thank you that CSS was the problem for the first question.

    For #2 where i want to display the Date and author and all that other stuff.
    So i did follow this.
    https://kriesi.at/support/topic/using-alb-with-custom-post-type-and-meta-information/#post-580144

    I created the new php file in my child theme and added the pastbin code into it.
    That didn’t display a new element, so i continued
    I added the other code to the functions.php and tried adding in the [the_post_meta] into a code block and a text block in the post but it doesn’t display anything/ seem to work.

    Any insight into this?

    Thanks

    #698553
    thecreativepatch
    Participant

    Hi,

    Great theme. We have an Ajax portfolio several places on our site but the next and previous button seems to be tripping up. The content from the previous still shows and then eventually just completely stops working. The page that is having the most issues is here: http://alphaplantbased.com/products/ so you can see yourself. We inserted short codes into the preview area… not sure if this is what is causing the issue. Can you please take a look and let us know if there is a fix. We have a presentation to some investors tomorrow and would like to have this issue resolved.

    Thanks!!

    #698533

    So I added the following code:
    #top .av_header_glassy.av_header_transparency #header_main {
    background-color: rgba(255,255,255,0.2);
    }
    kriesi.at/support/topic/adding-a-dark-transparent-background-to-the-menu/

    It did what I wanted when viewing on desktop and darkened the transparency of the header to my desired amount. The problem now is that on mobile I get a slightly darkened header…instead of being white it is now gray.

    To make the gray mobile slider white again I tried this:
    @media only screen and (max-width: 767px) {
    #top #wrap_all .av_header_transparency, .av_header_transparency #advanced_menu_toggle {
    background-color: red !important;
    }
    }
    kriesi.at/support/topic/change-colour-of-mobile-header/

    I of course changed ‘red’ to ‘white’ but got the same effect…a gray header. The transparency setting is overriding any other changes.

    Is there a way to use a code similar to the this one but have it only active on non-mobile viewing?
    #top .av_header_glassy.av_header_transparency #header_main {
    background-color: rgba(255,255,255,0.2);
    }

    Again, I want to be able to do what this site is doing: http://www.ferdykorpershoek.com/
    If you look at it on desktop you’ll notice a dark transparent header, and if you look on mobile you’ll notice it’s white.

    • This reply was modified 9 years, 5 months ago by brianbu.
    #698532
    jsdecarie
    Participant

    hello, congratulation for your good work with enfold !

    we just started using polylang as our preferred translation plugins, and as soon as it’s activated we are loosing masonry gallery… ? Everything came back to normal as soon as the plugin is desactivated, any idea why ? we have follow this topic : https://kriesi.at/support/topic/my-masonry-gallery-not-showing/ but it’s not fixing our issue.

    any idea ?

    #698530
    rene-griebel
    Participant

    Hi everybody,

    I am desperately looking for a way to insert following code within <div class=’inner-container’></div>:

    <div class='korona'></div><div class='slider'>
    <ul class='slider-banner'>
    <li><a href=''><img src='/wp-content/uploads/2015/12/top01.jpg'></a></li>
    <li><a href=''><img src='/wp-content/uploads/2015/12/top02.jpg'></a></li>
    <li><a href=''><img src='/wp-content/uploads/2015/12/top03.jpg'></a></li>
    <li><a href=''><img src='/wp-content/uploads/2015/12/top04.jpg'></a></li>
    <li><a href=''><img src='/wp-content/uploads/2015/12/top05.jpg'></a></li>
    <li><a href=''><img src='/wp-content/uploads/2015/12/top06.jpg'></a></li>
    </ul></div>
    <script>
    window.start=start=function()
    {
    	setTimeout(function (){
    		t=document.querySelector('.slider-banner li:nth-child(1)');
    		t.style.opacity=0;
    		setTimeout(function (){
    			t=document.querySelector('.slider-banner li:nth-child(1)');
    			document.querySelector('.slider-banner').appendChild(t);
    			t.removeAttribute('style');
    			start();
    		},5000);
    	},5000);
    
    }
    start();
    
    </script>
    

    Would be thankful for any recommendations..

    Regards
    Rene

    #698493

    Hi,

    Please try adding !important rule to the code as following

    @media only screen and (max-width: 480px) {
    .responsive #top .logo {
        padding-bottom: 20px !important;
    }}

    If that still does not work, please create a temporary admin login and post it here privately.

    Best regards,
    Yigit

    #698487
    fanlokbun
    Participant

    Hi Guys,
    https://kriesi.at/support/topic/add-to-cart-not-working-5/#post-657252

    July 5, 2016 at 9:14 pm
    #657252
    jonathankenbrown Participant
    I am investigating this issue with Woocommerce as well. I cannot add to cart as the qty throws an error: “Please match the requested format Qty”
    It started after the latest update of both Woocommerce and Enfold.

    This thread was never properly resolved so I have brought it back so we can get clear instructions on how to fix the problem. I originally fixed it by reverting back to version 2.5.3 of the Woocommerce plugin. When a recent update came through (after a few updates of Enfold Theme in the meantime) I thought it would have been fixed. It was not. I tried Ismaels fix #671598 but it didn’t work. I may not have got the fix correct as I don’t think the instructions were clear enough to follow as they referenced procedures in other threads without clarifying.
    I have again reverted back to Woocommerce version 2.5.3 to fix the problem pro tem.
    Please can you supply clear step by step instructions on how to resolve this Enfold conflict with Woocommerce (measurement-price-calculator addon is made by Woocommerce).
    Thanks
    Rob

    #698486
    goldengate415
    Participant

    Hi there… this might be a tough one…. is it possible to add thumbnail photos to a mega menu?

    For example, on the mega menu (sub menu) of “Featured Homes for Sale” top level menu item, I would like to include the thumbnail for each page in the sub menu (for each property…)
    http://www.thomashenthorne.com

    Is this possible?

    Thanks!!!
    Rob

    #698459

    In reply to: Back to Top

    Hey hothoundz,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    @media only screen and (max-width: 767px) {
    .responsive #scroll-top-link {
        display: block!important;
    }}

    Best regards,
    Vinay

    #698456

    In reply to: missing toolbar

    Hey stuartcale,

    It’s not clear which tool bar you are referring to ? is it the one that appears on top of the frontend when you login as wordpress admin ?

    To enable the toolbar please go to Dashboard > users > username > Toolbar > Show Toolbar when viewing site

    If this is not the one you need to enable please elaborate which tool bar you need if possible Would you mind posting us a screenshot/mockup of what you would like to achieve? You can upload the screenshot to imgur.com or dropbox and share the link here :)

    Best regards,
    Vinay

    #698453

    Hi Andy

    Let me explain.

    If you look at the link I shared . http://test.macbensmultiresources.com/nebosh-courses/, You will see by the sidebar the element with the red background that is fixed and scrolls while you move the page. What I want is for that element to stop moving when it reaches the faq section.

    Thanks

    Ikechi

    #698438

    Topic: Back to Top

    in forum Enfold
    hothoundz
    Participant

    Hi – I can’t see the back to top button when viewing my site on mobile (Android/ Galaxy S6).

    Is there any way to make sure it works on mobile?

    With thanks

    #698431

    Hello Yigit,
    it works… But I attached a padding-top of 3% for the breadcrumbs (in the mobil version) because the space between the headline and the breadcrumbs was = 0 after I changed the line-height. So thanks for your help and the quick answers.

    Best regards,

    Julian Hauschild

    • This reply was modified 9 years, 5 months ago by ecrodgwz.
    Anonymous
    Inactive

    Hello,

    The site is test.dangelointernational.com.

    We are trying to change the font, font-weights and sizes etc. of the header menu and the footer menu especially.

    We would like the font to change color on hover for the top-level menu of the main header menu.
    In the footer menu, we want to change the widgettitle and the items underneath. We want to change the font and the size.
    We are trying to use google fonts.

    We are new to this theme with very spotty knowledge of CSS.

    Also, we took over development from someone else. It seems as if they have deleted or hidden the Site tag (it’s a wordpress site). We would like to unhide it but don’t know where to begin looking.

    Thanks for you help.

    Mia

    #698416
    tuscan
    Participant

    Hi There,

    everything is up to date. but still my slider is not working!?

    Wordpress: Version 4.6.1
    Enfold: Version 3.8

    Somebody has a solution?

    Here is my site

    http://www.bmk-baumann.de/

    I allready tryed that solution:

    https://kriesi.at/support/topic/having-problems-after-updating-to-wordpress-4-5-please-read-this-first/

    Thank you sooooo much!!!!

    #698411
    roderickvs
    Participant

    Followed https://kriesi.at/support/topic/how-to-hide-some-elements-in-mobile-version/#post-362263 and that worked, the element is hidden on mobile, but now there is an empty space between the header and the first element shown on mobile instead of the first element shown follows the header directly. As if the hidden element leaves some blank space behind on http://www.vindjehetwat.nl

    #698399

    Hey!

    Please add following code to Quick CSS as well

    .html_header_sidebar #top #header {
        width: 200px;
    }

    Best regards,
    Yigit

    #698372

    Yigit:

    The No. 1 problem (the header date) has been fixed. The top menu was not set, causing the issue.

    On the other issue (No. 2), I added this code below to the Quick CSS, but the line on the ART REQUEST tab still exists.
    #top .av-menu-button-colored > a .avia-menu-text { border: none; }

    Suggestions?
    Kurt

    #698367

    In reply to: Language switcher

    Hi,

    remove the code from above. Try this instead:

    .menu-item-language a {
    height: 58px !important;
    top: 9px !important;
    position: relative;
    border: 1px solid;
    }
    

    and adjust as needed.

    Best regards,
    Andy

    #698366

    Hey rolf2,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .toggle_content.invers-color, .flex_column.av_two_third.flex_column_div.av-zero-column-padding.first.avia-builder-el-16.el_before_av_one_third.avia-builder-el-first, .flex_column.av_two_third.flex_column_div.first.avia-builder-el-19.el_after_av_one_full.el_before_av_one_third.column-top-margin, .flex_column.av_three_fifth.flex_column_div.first.avia-builder-el-1.el_before_av_two_fifth.avia-builder-el-first, .flex_column.av_three_fifth.flex_column_div.first.avia-builder-el-3.el_after_av_one_full.el_before_av_two_fifth.column-top-margin, .flex_column.av_two_third.flex_column_div.first.avia-builder-el-3.el_after_av_one_full.el_before_av_one_third.column-top-margin, .flex_column.av_one_half.flex_column_table_cell.av-equal-height-column.av-align-top.first.avia-builder-el-2.el_after_av_textblock.el_before_av_one_half.column-top-margin, .flex_column.av_one_half.flex_column_table_cell.av-equal-height-column.av-align-top.avia-builder-el-4.el_after_av_one_half.avia-builder-el-last.column-top-margin, .flex_column.av_one_third.flex_column_div.avia-builder-el-21.el_after_av_two_third.el_before_av_one_half.column-top-margin, .flex_column_table.av-equal-height-column-flextable {
        opacity: 1;
    }
    

    Best regards,
    Yigit

    #698357

    Hey patricknh,

    Please edit your page and click “Screen options” on the right top corner and check “Revisions” then scroll below your content and revert the changes you made and then look for the incorrectly added HTML tag. That is the cause of the issue most of the time

    Best regards,
    Yigit

Viewing 30 results - 89,461 through 89,490 (of 142,844 total)