Viewing 30 results - 9,481 through 9,510 (of 11,220 total)
  • Author
    Search Results
  • codemode
    Participant

    Hi, the chart (table) at the top of my cart page with the product, quantity, price, total etc somehow stretches far off to the right cutting off the “proceed to checkout” and “update cart” buttons — you have to expand the browser window all the way to the right to see them. It is not responsive to screen sizes and therefore you can’t check out on smaller screen sizes.

    All other woo commerce pages and tables are formatted correctly within my site’s max width with the exception of the table atop the cart page.

    I tried containing the [woocommerce_cart] short code on the cart page within the avia layout editor and that doesn’t seem to do anything.

    i’m running WP 4.0 with the latest enfold theme 2.9.2 and latest woo commerce 2.2.4.

    saw this thread: https://wordpress.org/support/topic/woocommerce-checkout-not-mobile-responsive

    Seems to work ok with the default WP 2014 theme, but not with enfold theme.

    any ideas?

    UPDATE: I used the code below to force the cart tables to become responsive, however, the tables still do not respond on mobile phone portrait. If the user does not change to landscape, they have no way of checking out.

    /* START Make the cart table responsive */
    /* http://css-tricks.com/responsive-data-tables/ */
    
    @media screen and (max-width: 640px) {
    
    /* Force table to not be like tables anymore */
    .woocommerce-page table.shop_table, 
    .woocommerce-page table.shop_table thead, 
    .woocommerce-page table.shop_table tbody, 
    .woocommerce-page table.shop_table th, 
    .woocommerce-page table.shop_table td, 
    .woocommerce-page table.shop_table tr { 
    	display: block; 
    }
    
    /* Hide table headers (but not display: none;, for accessibility) */
    .woocommerce-page table.shop_table thead tr { 
    	position: absolute;
    	top: -9999px;
    	left: -9999px;
    }
    
    .woocommerce-page table.shop_table tr { 
    	/*border: 1px solid #d2d3d3; */
    }
    
    .woocommerce-page table.shop_table td { 
    	/* Behave  like a "row" */
    	border: 1px solid #d2d3d3; 
    	position: relative;
    	padding-left: 30% !important; 
    }
    
    .woocommerce-page table.shop_table {
    	border: none;
            max-width:1030px!important;
    }
    
    .woocommerce-page table.shop_table td.product-spacer {
    	border-color: #FFF;
    	height: 10px;
    }
    
    .woocommerce-page table.shop_table td:before { 
    	/* Now like a table header */
    	position: absolute;
    	/* Top/left values mimic padding */
    	top: 6px;
    	left: 6px;
    	width: 45%; 
    	padding-right: 10px; 
    	white-space: nowrap;
    }
    
    /*
    Label the data
    */
    .woocommerce-page table.shop_table td.product-remove:before {
    	content: "DELETE";
    }
    
    .woocommerce-page table.shop_table td.product-thumbnail:before {
    	content: "IMAGE";
    }
    
    .woocommerce-page table.shop_table td.product-name:before {
    	content: "PRODUCT";
    }
    
    .woocommerce-page table.shop_table td.product-price:before {
    	content: "PRICE";
    }
    
    .woocommerce-page table.shop_table td.product-quantity:before {
    	content: "QUANTITY";
    }
    
    .woocommerce-page table.shop_table td.product-subtotal:before {
    	content: "SUBTOTAL";
    }
    
    .woocommerce-page table.shop_table td.product-total:before {
    	content: "TOTAL";
    }
    
    .woocommerce .quantity, 
    .woocommerce #content .quantity, 
    .woocommerce-page .quantity, 
    .woocommerce-page #content .quantity {
    	margin: 0;
    }
    
    .woocommerce-page table.cart td.actions, 
    .woocommerce-page #content table.cart td.actions {
    	text-align: left;
    	border:0;
    	padding-left: 6px !important;
    }
    
    .woocommerce-page table.cart td.actions .button.alt, 
    .woocommerce-page #content table.cart td.actions .button.alt {
    	float: left;
    	margin-top: 10px;
    }
    
    .woocommerce-page table.cart td.actions div, 
    .woocommerce-page #content table.cart td.actions div,
    .woocommerce-page table.cart td.actions input, 
    .woocommerce-page #content table.cart td.actions input {
    	margin-bottom: 10px;
           width: 100%;
    }
    
    .woocommerce-page .cart-collaterals .cart_totals {
    	float: left;
    	width: 100%;
    	text-align: left;
    }
    
    .woocommerce-page .cart-collaterals .cart_totals th, 
    .woocommerce-page .cart-collaterals .cart_totals td {
    	border:0 !important;
    }
    
    .woocommerce-page .cart-collaterals .cart_totals table tr.cart-subtotal td,
    .woocommerce-page .cart-collaterals .cart_totals table tr.shipping td,
    .woocommerce-page .cart-collaterals .cart_totals table tr.total td {
    	padding-left: 6px !important;
    }
    
    .woocommerce-page table.shop_table tr.cart-subtotal td,
    .woocommerce-page table.shop_table tr.shipping td,
    .woocommerce-page table.shop_table tr.total td,
    .woocommerce-page table.shop_table.order_details tfoot th,
    .woocommerce-page table.shop_table.order_details tfoot td {
    	padding-left: 6px !important;
    	border:0 !important;
    }
    
    .woocommerce-page table.shop_table tbody {
    	padding-top: 10px;
    }
    
    .woocommerce .col2-set .col-1, 
    .woocommerce-page .col2-set .col-1,
    .woocommerce .col2-set .col-2, 
    .woocommerce-page .col2-set .col-2,
    .woocommerce form .form-row-first, 
    .woocommerce form .form-row-last, 
    .woocommerce-page form .form-row-first, 
    .woocommerce-page form .form-row-last {
    	float: none;
    	width: 100%;
    }
    
    .woocommerce .order_details ul, 
    .woocommerce-page .order_details ul,
    .woocommerce .order_details, 
    .woocommerce-page .order_details {
    	padding:0;
    }
    
    .woocommerce .order_details li, 
    .woocommerce-page .order_details li {
    	clear: left;
    	margin-bottom: 10px;
    	border:0;
    }
    
    }
    
    /* END Make the cart table responsive */
    
    • This topic was modified 11 years, 6 months ago by codemode.
    #326154

    Is it only possible to loop background Vimeo videos by editing the section.php file? And does that mean that either all background videos loop or not? Is it possible to have a choice? I would like some videos hosted by Vimeo to loop and some to only play once. It seems as though this kind of control would be important to many developers.

    I am curious why you don’t allow embed code rather than the URL, to provide more control over the playback of Vimeo.

    However, the display of full screen Vimeo with no controls or pause button is amazing! I have been trying to do this for a long time with various sliders, etc., but Enfold gives the cleanest look to full screen video I have seen:

    http://www.postrealityshow.com

    Thanks!

    #326120

    I tried Yigit’s code for deactivating the integrated LayerSlider in functions.php.

    This indeed deactivated and removed LayerSlider – both from Admin Menu leftside, as well as LS buttons in the Advanced Editor.
    I could then install LayerSlider as a stand alone. My previous settings displayed. I had exported my previous sliders just in case.

    Back end works fine, latest version of WP LayerSlider 5.3.1.

    Front end: complete white screen.

    Nothing at all of the site.

    Didn’t work. Was hoping that installing standalone with latest version of LS would help solve a missing sliders in Safari on my live sites (they show in Firefox and Chrome just fine).

    Please see this thread: https://kriesi.at/support/topic/home-layer-slider-not-displaying-in-safari/

    Any help appreciated. Will set it back as it was with integrated LS. Anything to do other than wait for the next Enfold update with latest LS?

    Any assistance truly appreciated. Would like all live sites to display on all browsers.
    Thank you.

    #325666
    CustomiPhone
    Participant

    Hello everybody,

    Someone could help me to do a button like this one : Example
    The logo is SVG and the name is text.

    In advance, thanks

    • This topic was modified 11 years, 7 months ago by CustomiPhone.
    #325655

    Hey NielsSR!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .html_header_top.html_header_topbar_active.html_header_sticky #top #main { padding-top: 88px; }
    #kontakt .avia_ajax_form .button { position: static; }

    Best regards,
    Yigit

    #325600

    Topic: Social share links

    in forum Enfold
    jorisvo
    Participant

    Hello,

    I am using the Enfold theme and its possibility to include share buttons in each post.

    I would prefer to have some customization of this feature, such as:
    – showing share buttons both at the top and the bottom of each post
    – showing share buttons that are more visible, now they are esthetic but can easily be looked over (for example, look at http://www.entrepreneur.com/article/237448, where each share button is shown in its own distinctive color)
    – showing share buttons also on the home page, not only on the page of the post itself
    – changing the text that will be added once the share button is activated (e.g. including @alias in a tweet)

    What would be the best way to go about? Are there any plugins compatible with enfold available? Or is this something that can be added within Enfold?

    Thanks for your help,
    Joris

    #325518
    ansichtsART
    Participant

    Hello Kriesi-Team,

    i have installed the Enfold-Theme, used the newest Version of WordPress 4.0.
    On my home page layout has been created with the Layout Editor. But recently I can not access the layout. In addition, I wanted to use the layout editor for my shop page, but this can not activate. The button is there, but the editor can not be activated … This is on all pages with no content so …
    Can you help me?

    #325411
    NielsSR
    Participant

    Hi,

    I setup the Enfold theme and have managed to work with it quite well after a while. Now that my Website is basically finalised I have two issues I cannot solve, no Idea why (Website URL: http://www.advoluchs.de) :

    #1 On the Top of the main page there seems to be a whitespace but it is not there in the visual editor (i.e. between the menu and the beginning of the content there is a lot of space – marked red & blue in the picture): http://i57.tinypic.com/30bmvkm.jpg

    #2 In the Contact Form (built throught the contact form shortcode of the enfold theme) the button is in the middle of one field, no Idea why and I can’t change it, played around with the fields and it’s always in the middle of the last one: http://i57.tinypic.com/30aqjop.jpg

    Hope you can help me solve this. Thanks in advance.

    #325281
    mijyman
    Participant

    Hi there,

    I have implemented the following:

    http://kriesi.at/documentation/enfold/add-onclick-event-to-the-contact-form-submit-button/

    onto my website: http://www.whitestagweddings.com/contact

    Now I still don’t know how to successfully track contact forms via analytics. How would I finish this setup?
    Alternatively, is there any other successfully proven way of doing this? I don’t want to use Contact Form7 etc.

    Many thanks,
    Andy

    JamesTuttle
    Participant

    We LOOVE Enfold for WordPress!!! By FAR the best template we have ever worked with- Thank you!!!

    We are having one large problem with it though- we can see the play and forward buttons for the video, but it won’t play, and there are no errors displayed. Help! :)

    #324608

    Hey!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    @media only screen and (max-width: 480px) {
    .avia-layerslider .avia-button.avia-size-large {
    padding: 7px;
    font-size: 13px;
    min-width: 100px;
    margin-top: 12px;
    }}

    Best regards,
    Yigit

    #324537

    Hey envapk2!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed

    .mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close, div.avia-popup button.mfp-arrow:before { color: red; }

    Regards,
    Yigit

    #324468
    reidmccallhhi
    Participant

    I added this line to functions-enfold.php:

    <?php
    echo do_shortcode(‘[smartslider2 slider=”1″]’);
    ?>

    And my site went blank.

    I used the back button to get back to the edit file screen and deleted the code and hit update file, but site is still blank.

    Whoops! Help! Thanks!

    #324289

    Hi!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .avia_cart_buttons { display: none; }
    .inner_product_header h3 { font-size: 18px!important; }

    Best regards,
    Yigit

    #324191

    Topic: demo content bug

    in forum Enfold
    thesmartpoint
    Participant

    Hi,

    I installed the latest enfold theme (with child folder) and installed the demo content using the appropriate button in the theme settings.

    the wordpress installation was just new, clean and empty.

    the menu is not working (I guess is a bug in the mega-menu features) and all menu items overlap the slideshow.

    Here if you want to see what happens: http://www.thesmartpoint.net/swt_it/

    Is there any fix about it?

    Thanks in advance

    Giorgio

    • This topic was modified 11 years, 7 months ago by thesmartpoint.
    #324135

    In reply to: Button/icon to anchor?

    This reply has been marked as private.
    #324090

    Hi!

    You’re not hiding the VK button, you should be replacing it with another icon code like I describe above. Use the VK social icon then add the url of the section where you want the icon to point. If the icon that you want is not available, please refer to this link on how to add custom icon fonts: http://kriesi.at/documentation/enfold/adding-your-own-icon-fonts/

    Best regards,
    Ismael

    #324061

    Hey Enffie!

    Enfold does not have a “insert sheet” button, i believe that was added by a third-party plugin which may not be compatible with the latest version of WP.

    Best regards,
    Josue

    #323842
    jm.sierra
    Participant

    Hi! Im currently moving my website from an old template to Enfold, I currently have installed and exported the Dummy Data successfully but when i go and see the website on a mobile device, the Homepage slider or any other slider for that matter in the device won’t show, as well as the Menus (Menu button that reveals the menus) won’t show either. I have gone to the demo site of Enfold thinking that maybe it was a Safari compatibility, but the Enfold Demo sites works fine on my iPhone. Please help! :( I want to launch my website in a couple of days and not being able to have it completely functional in the iPhones and iPads is holding me back!

    I would really appreciate a quick response!! thank you for all your work i love the theme, and all its features bust theme out there!

    #323711
    onkeldonut
    Participant

    After the updates (both – WordPress AND Enfold) the theme is not working properly anymore. I can not use the “insert media” function and when i try to insert a new article picture the nice new lightbox-upload-window has disappeared but instead the old upload-window opens in the same tab and ich can not go back to the content anymore.

    Since the “insert media” button on top of the content-block does not work i can not ad new products to my online shop which is kind of a big problem!!!

    Please help!!!!!!

    #323399

    The dummy data doesn’t include every image used on the theme demo as Kriesi doesn’t have redistribution rights for all of them. That being said, if you wanted to load in the same exact data you could do so by first turning on the debug field for pages: http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/

    Then on a blank page switch over to the ALB and in that new empty debug field paste in the raw shortcode data from the demo [note: you still need to change the layout settings for no sidebar and transparent header and this does not provide the actual images for use]:

    
    [av_fullscreen size='extra_large' animation='fade' autoplay='true' interval='7' scroll_down='aviaTBscroll_down']
    [av_fullscreen_slide slide_type='image' id='2553' attachment=',' position='top left' video='http://' mobile_image='' video_cover='' title='This is a page with transparent header' caption_pos='caption_left caption_left_framed caption_framed' link_apply='button' link='lightbox' link_target='' button_label='Show me' button_color='light' link1='#next-section' link_target1='' button_label2='Click me' button_color2='light' link2='http://' link_target2='' video_controls='' video_mute='' video_loop='' video_autoplay='']
    Once the user scrolls down the header color will change
    [/av_fullscreen_slide]
    [av_fullscreen_slide slide_type='image' id='2552' attachment=',' position='top left' video='http://' mobile_image='' video_cover='' title='Another caption' caption_pos='caption_right caption_right_framed caption_framed' link_apply='button button-two' link='lightbox' link_target='' button_label='Show me' button_color='light' link1='#next-section' link_target1='' button_label2='Learn more' button_color2='light' link2='#next-section' link_target2='' video_controls='' video_mute='' video_loop='' video_autoplay='']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque pe.
    [/av_fullscreen_slide]
    [/av_fullscreen]
    
    [av_one_fourth first]
    [av_icon_box icon='59' position='left' title='Free Support']
    Aenean commodo ligula eget dolor. Lorem <strong>ipsum</strong> dolor sit amet, consectetuer adipiscing elit. Cum sociis natoque<strong> </strong>Aenean massa.
    [/av_icon_box]
    [/av_one_fourth]
    
    [av_one_fourth]
    [av_icon_box icon='2' position='left' title='Mobile Ready']
    Cum sociis <strong>natoque</strong>. Aenean commodo ligula eget dolor. Aenean massa. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
    [/av_icon_box]
    [/av_one_fourth]
    
    [av_one_fourth]
    [av_icon_box icon='125' position='left' title='Updates']
    Cum sociis natoque <strong>sadfsadfas </strong>Aenean commodo ligula eget dolor. Aenean massa. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
    [/av_icon_box]
    [/av_one_fourth]
    
    [av_one_fourth]
    [av_icon_box icon='36' position='left' title='SEO Optimized']
    Aenean commodo ligula eget dolor. <strong>Aenean massa</strong>. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
    [/av_icon_box]
    [/av_one_fourth]
    
    [av_section color='main_color' custom_bg='' src='http://kriesi.at/themes/enfold/files/2013/10/woman-flinging-long-hair-1500x1000.jpg' attachment='2576' attach='parallax' position='top left' repeat='no-repeat' video='' video_ratio='16:9' min_height='75' padding='default' shadow='no-shadow' id='']
    [av_one_third first]
    
    [av_icon_box icon='ue806' font='entypo-fontello' position='top' title='Mobile Ready' link='' linktarget='' linkelement='']
    Cum sociis <strong>natoque</strong>. Aenean commodo ligula eget dolor. Aenean massa. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
    [/av_icon_box]
    
    [/av_one_third][av_one_third]
    
    [av_icon_box icon='ue836' font='entypo-fontello' position='top' title='SEO Optimized' link='' linktarget='' linkelement='']
    Aenean commodo ligula egconsectetueret dolor sit amlor. <strong>Aenean massa</strong>. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
    [/av_icon_box]
    
    [/av_one_third][av_one_third]
    
    [av_icon_box icon='ue842' font='entypo-fontello' position='top' title='Free Support' link='' linktarget='' linkelement='']
    Aenean commodo ligula eget dolor. Lorem <strong>ipsum</strong> dolor sit amet, consectetuer adipiscing elit. Cum sociis natoque<strong> </strong>Aenean massa.
    [/av_icon_box]
    
    [/av_one_third]
    [/av_section]
    
    [av_section color='main_color' custom_bg='' src='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' video_mobile_disabled='' min_height='' padding='default' shadow='no-shadow' id='']
    [av_one_fourth first]
    
    [av_textblock]
    <h6>Recent News</h6>
    <em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</em>
    
    <a href="#">View more</a>
    [/av_textblock]
    
    [/av_one_fourth][av_three_fourth]
    
    [av_postslider link='category,3' columns='3' items='3' contents='title' autoplay='no' interval='5']
    
    [/av_three_fourth][av_hr class='default' height='50' position='center']
    
    [av_one_fourth first]
    
    [av_textblock]
    <h6>Recent Work</h6>
    <em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</em>
    
    <a href="#">View more</a>
    [/av_textblock]
    
    [/av_one_fourth][av_three_fourth]
    
    [av_postslider link='portfolio_entries' columns='3' items='3' contents='title' autoplay='no' interval='5']
    
    [/av_three_fourth]
    [/av_section]
    
    [av_section color='socket_color' custom_bg='' src='http://kriesi.at/themes/enfold/files/2013/10/photodune-3581207-black-in-black-m-1500x1182.jpg' attachment='2572' attach='parallax' position='top left' repeat='stretch' video='' video_ratio='16:9' min_height='75' padding='large' shadow='no-shadow' id='portfolio']
    [av_heading heading='A beautiful <strong>experience!</strong>' tag='h1' color='custom-color-heading' custom_font='#ffffff' style='blockquote modern-quote modern-centered' size='50' subheading_active='subheading_below' subheading_size='18' padding='60']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.
    
    [/av_heading]
    
    [av_one_fifth first]
    
    [av_font_icon icon='ue826' font='entypo-fontello' style='border' caption='Eye Candy' link='manually,http://kriesi.at' linktarget='' color='#ffffff' size='40px' position='center']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa.
    [/av_font_icon]
    
    [/av_one_fifth][av_one_fifth]
    
    [av_font_icon icon='ue856' font='entypo-fontello' style='border' caption='Tools' link='manually,themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?ref=kriesi' linktarget='' color='#ffffff' size='40px' position='center']
    We have added exactly the tools you need and left out everything you don't need. Finally a multi purpose Theme that is not bloated!
    [/av_font_icon]
    
    [/av_one_fifth][av_one_fifth]
    
    [av_font_icon icon='ue8a5' font='entypo-fontello' style='border' caption='A list' link='post,94' linktarget='' color='#ffffff' size='40px' position='center']
    <ol>
    <li>Super nice Parallax</li>
    <li>Optimized for Speed</li>
    <li>Brilliant Template Builder</li>
    <li>Easy to use</li>
    <li>Set up in 2 minutes</li>
    </ol>
    [/av_font_icon]
    
    [/av_one_fifth][av_one_fifth]
    
    [av_font_icon icon='ue8a8' font='entypo-fontello' style='border' caption='Updates' link='manually,themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?ref=kriesi' linktarget='' color='#ffffff' size='40px' position='center']
    Enfold is an award winning theme that is quickly becoming one of themeforest top sellers. And for a reason! Try it yourself!
    [/av_font_icon]
    
    [/av_one_fifth][av_one_fifth]
    
    [av_font_icon icon='ue8dd' font='entypo-fontello' style='border' caption='Rocket Science?' link='manually,themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?ref=kriesi' linktarget='' color='#ffffff' size='40px' position='center']
    Far from! Probably the easiest Multipurpose theme you have ever used!
    [/av_font_icon]
    
    [/av_one_fifth]
    [/av_section]
    
    #323329
    selkins
    Participant

    Hi,

    I’m trying to set up a page in my project that has the same button look in the left sidebar with the same functionality but for the life of me I can’t do this.

    Can you tell me how?

    Many Thanks,
    Scott

    #323183
    plugmedialtd
    Participant

    Hi,

    I’ve recently installed Enfold for a new website and was wondering if you could give me some advice or assistance with a few customisation-related issues I’ve been having:

    What method can you recommend for adding a custom element to the header topbar? For example, a dropdown element with buttons, or maybe to add a widget area to the topbar.

    I have a ‘custom menu’ widget in my footer to mirror my main header menu and it is displaying vertically, making my footer super-long. Is there a straightforward way to have it display each top level menu item horizontally, and each child menu item below its parent?

    I’m using the LayerSlider plugin and want to make it fully responsive without resizing the entire slides (with responsive mode turned on, the text is too small to read on smaller screens, and elements like buttons stay the same size). Where would you recommend I add media queries for the slides?

    Thanks a lot in advance!

    • This topic was modified 11 years, 7 months ago by plugmedialtd.
    #323121

    In reply to: Printing of site

    Hi web4698!

    The print style of any site is not ever going to be an exact snapshot of the site since browsers have their own rules they apply when you do a print command.

    With Enfold we have a separate print stylesheet that tries to keep as much of the core styling in place while also making it more printer friendly. Its similar to how it changes for mobile and tablet views since the print width is much more narrow.

    For the submit claim button you can add in some new print only css so that it moves to the right or becomes hidden for print since the them doesn’t have rules in place for customization already.

    If you want to print it just like you see on your screen you would need to take a screenshot and then print that.

    Cheers!
    Devin

    #322983
    mrwerner
    Participant

    Helllo, I have created a button on one of my menu items and it moves with the menu header shrink. But it is no quite in sync with the menu and social icons when i scroll.
    When I scroll the “my Flights icon does not snap into thin header like menu and social icons. Its like there is a delay before the menu/background jumps up
    Any help would be appreciated

    li#menu-item-2644 a {
    padding: 5px 5px;
    background-color: #f58020!important;
    color: white!important;
    height: 25px!important;
    line-height: 15px!important;
    margin-top: 33px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    text-decoration: none;
    }

    regards
    Michael

    #322897
    nnn666nnn
    Participant

    Hi,
    Once again, i’d like to thank Kriesi’s team for always being so reactive !

    I have a little problem, I don’t know if it caused by using Enfold with WP 4.0.
    I have created a one page website with parallax effect and when I click on each button in the navigation bar ( linked to each section of the page with links of this type : http://www.mywebsite.com/#section ), it works but the “smooth” scroll down effect is not working : it goes straight to the section as if it was gong to a new page instead of “moving ” down to the section ( if that makes sense ? ).
    It was working perfectly with the old version of WP / Enfold.
    Is there any solution to fix that ?

    Thank you for your help.

    #322879

    Topic: Update problems

    in forum Enfold
    geostru
    Participant

    Hi,

    We are having troubles with our wordpress site after updating to version 4.0
    We also got the last update for Enfold theme (that we are using), but there are several problems.
    For example we can’t add links for text, we can’t see the advanced layout editor, (we click on related buttons and nothing happens), content elements don’t work etc.
    You had a changelog that the theme is working with WordPress 4.0 and so we updated wordpress, but now we find ourself in real trouble as we can’t manage our website content anymore.

    Please let us know when you can fix this as we are in urgent need to work on content.

    #322415

    Hi VBM!

    If you have the debug field turned on for the drag and drop editor you could add this in to get a basic build of that page:

    
    [av_fullscreen size='extra_large' animation='fade' autoplay='true' interval='7' scroll_down='aviaTBscroll_down']
    [av_fullscreen_slide slide_type='image' id='2553' attachment=',' position='top left' video='http://' mobile_image='' video_cover='' title='This is a page with transparent header' caption_pos='caption_left caption_left_framed caption_framed' link_apply='button' link='lightbox' link_target='' button_label='Show me' button_color='light' link1='#next-section' link_target1='' button_label2='Click me' button_color2='light' link2='http://' link_target2='' video_controls='' video_mute='' video_loop='' video_autoplay='']
    Once the user scrolls down the header color will change
    [/av_fullscreen_slide]
    [av_fullscreen_slide slide_type='image' id='2552' attachment=',' position='top left' video='http://' mobile_image='' video_cover='' title='Another caption' caption_pos='caption_right caption_right_framed caption_framed' link_apply='button button-two' link='lightbox' link_target='' button_label='Show me' button_color='light' link1='#next-section' link_target1='' button_label2='Learn more' button_color2='light' link2='#next-section' link_target2='' video_controls='' video_mute='' video_loop='' video_autoplay='']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque pe.
    [/av_fullscreen_slide]
    [/av_fullscreen]
    
    [av_one_fourth first]
    [av_icon_box icon='59' position='left' title='Free Support']
    Aenean commodo ligula eget dolor. Lorem <strong>ipsum</strong> dolor sit amet, consectetuer adipiscing elit. Cum sociis natoque<strong> </strong>Aenean massa.
    [/av_icon_box]
    [/av_one_fourth]
    
    [av_one_fourth]
    [av_icon_box icon='2' position='left' title='Mobile Ready']
    Cum sociis <strong>natoque</strong>. Aenean commodo ligula eget dolor. Aenean massa. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
    [/av_icon_box]
    [/av_one_fourth]
    
    [av_one_fourth]
    [av_icon_box icon='125' position='left' title='Updates']
    Cum sociis natoque <strong>sadfsadfas </strong>Aenean commodo ligula eget dolor. Aenean massa. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
    [/av_icon_box]
    [/av_one_fourth]
    
    [av_one_fourth]
    [av_icon_box icon='36' position='left' title='SEO Optimized']
    Aenean commodo ligula eget dolor. <strong>Aenean massa</strong>. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
    [/av_icon_box]
    [/av_one_fourth]
    
    [av_section color='main_color' custom_bg='' src='http://kriesi.at/themes/enfold/files/2013/10/woman-flinging-long-hair-1500x1000.jpg' attachment='2576' attach='parallax' position='top left' repeat='no-repeat' video='' video_ratio='16:9' min_height='75' padding='default' shadow='no-shadow' id='']
    [av_one_third first]
    
    [av_icon_box icon='ue806' font='entypo-fontello' position='top' title='Mobile Ready' link='' linktarget='' linkelement='']
    Cum sociis <strong>natoque</strong>. Aenean commodo ligula eget dolor. Aenean massa. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
    [/av_icon_box]
    
    [/av_one_third][av_one_third]
    
    [av_icon_box icon='ue836' font='entypo-fontello' position='top' title='SEO Optimized' link='' linktarget='' linkelement='']
    Aenean commodo ligula egconsectetueret dolor sit amlor. <strong>Aenean massa</strong>. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
    [/av_icon_box]
    
    [/av_one_third][av_one_third]
    
    [av_icon_box icon='ue842' font='entypo-fontello' position='top' title='Free Support' link='' linktarget='' linkelement='']
    Aenean commodo ligula eget dolor. Lorem <strong>ipsum</strong> dolor sit amet, consectetuer adipiscing elit. Cum sociis natoque<strong> </strong>Aenean massa.
    [/av_icon_box]
    
    [/av_one_third]
    [/av_section]
    
    [av_section color='main_color' custom_bg='' src='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' video_mobile_disabled='' min_height='' padding='default' shadow='no-shadow' id='']
    [av_one_fourth first]
    
    [av_textblock]
    <h6>Recent News</h6>
    <em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</em>
    
    <a href="#">View more</a>
    [/av_textblock]
    
    [/av_one_fourth][av_three_fourth]
    
    [av_postslider link='category,3' columns='3' items='3' contents='title' autoplay='no' interval='5']
    
    [/av_three_fourth][av_hr class='default' height='50' position='center']
    
    [av_one_fourth first]
    
    [av_textblock]
    <h6>Recent Work</h6>
    <em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</em>
    
    <a href="#">View more</a>
    [/av_textblock]
    
    [/av_one_fourth][av_three_fourth]
    
    [av_postslider link='portfolio_entries' columns='3' items='3' contents='title' autoplay='no' interval='5']
    
    [/av_three_fourth]
    [/av_section]
    
    [av_section color='socket_color' custom_bg='' src='http://kriesi.at/themes/enfold/files/2013/10/photodune-3581207-black-in-black-m-1500x1182.jpg' attachment='2572' attach='parallax' position='top left' repeat='stretch' video='' video_ratio='16:9' min_height='75' padding='large' shadow='no-shadow' id='portfolio']
    [av_heading heading='A beautiful <strong>experience!</strong>' tag='h1' color='custom-color-heading' custom_font='#ffffff' style='blockquote modern-quote modern-centered' size='50' subheading_active='subheading_below' subheading_size='18' padding='60']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.
    
    [/av_heading]
    
    [av_one_fifth first]
    
    [av_font_icon icon='ue826' font='entypo-fontello' style='border' caption='Eye Candy' link='manually,http://kriesi.at' linktarget='' color='#ffffff' size='40px' position='center']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa.
    [/av_font_icon]
    
    [/av_one_fifth][av_one_fifth]
    
    [av_font_icon icon='ue856' font='entypo-fontello' style='border' caption='Tools' link='manually,themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?ref=kriesi' linktarget='' color='#ffffff' size='40px' position='center']
    We have added exactly the tools you need and left out everything you don't need. Finally a multi purpose Theme that is not bloated!
    [/av_font_icon]
    
    [/av_one_fifth][av_one_fifth]
    
    [av_font_icon icon='ue8a5' font='entypo-fontello' style='border' caption='A list' link='post,94' linktarget='' color='#ffffff' size='40px' position='center']
    <ol>
    <li>Super nice Parallax</li>
    <li>Optimized for Speed</li>
    <li>Brilliant Template Builder</li>
    <li>Easy to use</li>
    <li>Set up in 2 minutes</li>
    </ol>
    [/av_font_icon]
    
    [/av_one_fifth][av_one_fifth]
    
    [av_font_icon icon='ue8a8' font='entypo-fontello' style='border' caption='Updates' link='manually,themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?ref=kriesi' linktarget='' color='#ffffff' size='40px' position='center']
    Enfold is an award winning theme that is quickly becoming one of themeforest top sellers. And for a reason! Try it yourself!
    [/av_font_icon]
    
    [/av_one_fifth][av_one_fifth]
    
    [av_font_icon icon='ue8dd' font='entypo-fontello' style='border' caption='Rocket Science?' link='manually,themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?ref=kriesi' linktarget='' color='#ffffff' size='40px' position='center']
    Far from! Probably the easiest Multipurpose theme you have ever used!
    [/av_font_icon]
    
    [/av_one_fifth]
    [/av_section]
    

    Best regards,
    Devin

    #322397
    clemen_lp
    Participant

    Hi
    In the theme enfold, the components of the head (logo, menu, buttons of social networks.) they appear with a very low opacity and almost they are not seen in my tablet. In de destock is ok.

    Visualizing the thme demo from his page http: // kriesi.at/themedemo/? Theme=enfold
    the same thing happens.

    Thank you

    #322360

    Hi Ismael,
    Thank you for the reply. I must be doing something wrong! I go to Appearance>Widget and drag the enfold “search” widget into the “display everywhere” widget area. then on a page on the site I select the “Widget area” element and drag it on to the page, in the drop-down menu I select “display everywhere” and click “update”, and the widget area disappears – every-time. I have tried variations with different widget areas and different widgets, all with the same result.
    I managed to do what i needed using the “code block” element and using the html for the button i was trying to instal and this has worked so the issue is not urgent but I have other widgets that i would like to insert in specific places on the site so it would be good to know what i am doing wrong.

    sorry forgot to say i did not add any html code on top of the widget area – at least not intentionally!

    I have tried adding new “enfold custom widget areas” on the Widget page and these new widget areas do not appear in the drop-down menu on the widget area element. perhaps the problem lies in my widget area. I did make a mistake earlier and created a new “enfold custom widget area” that i cannot now delete. could this be the problem?

    • This reply was modified 11 years, 7 months ago by rgbozeat.
Viewing 30 results - 9,481 through 9,510 (of 11,220 total)