Forum Replies Created

Viewing 30 posts - 56,101 through 56,130 (of 67,207 total)
  • Author
    Posts
  • in reply to: Change icon for image #313811

    Hi alfincobain!

    Thank you for using Enfold.

    Edit functions.php, find this code on line 160:

    'facebook' 		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue8f3'),
    

    Replace it with:

    'facebook' 		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue920'),
    

    Regards,
    Ismael

    in reply to: Space between lines and paragraphs – Blog #313810

    Hi faterra!

    Thank you for using Enfold.

    You can change the line height and font size of the text with this:

    body, body p {
    line-height: 26px;
    font-size: 15px;
    }

    Best regards,
    Ismael

    in reply to: Switch Featured Image and Headline order #313787

    Hey esemmel!

    Thank you for using Enfold.

    You can refer to this link: https://kriesi.at/support/topic/how-can-i-make-the-post-title-appear-above-the-featured-images-on-the-blog-page/

    Best regards,
    Ismael

    in reply to: images and icons do not display #313786

    Hey!

    Thank you for using Enfold.

    Please try to deactivate the minify settings then check it again on another browser or computer. If you want to compress the theme scripts, please try this plugin: https://wordpress.org/plugins/bwp-minify/

    Add this on functions.php to exclude some stylesheets:

    add_filter('bwp_minify_style_ignore', 'exclude_my_css');
     
    function exclude_my_css($excluded)
    {
        $excluded = array('avia-custom', 'avia-layout');
        return $excluded;
    }

    Cheers!
    Ismael

    in reply to: Force smaller screen View #313784

    Hi Tech!

    Thank you for using Enfold.

    You can create a static page on another website then add an iframe to show the actual enfold site. Something like this:

    <iframe src="http://www.myenfoldsite.com" width="400" height="500"></iframe>
    

    Cheers!
    Ismael

    in reply to: You tube not working in chrome or firefox #313781

    Hey!

    Thank you for the screenshot.

    I checked the site on Chrome and the youtube video loads fine. It does take some time before it shows. There are lot of https errors or insecure content on the site, maybe because of a plugin.

    Best regards,
    Ismael

    in reply to: Looks like a bug: left:245px in the comments section #313777

    Hi snyderl!

    Thank you for using Enfold.

    We can’t see the comment form if we’re not logged in. Please give us a temporary account. A screenshot of the issue will help.

    Cheers!
    Ismael

    Hi profumopuntoit!

    Thank you for using Enfold.

    Please go to Woocommerce > Settings > Checkout panel then set the Checkout page and its endpoints.

    Regards,
    Ismael

    in reply to: Blog Display #313775

    Hey Jagrav!

    Thank you for using Enfold.

    I’m sorry but you will have to modify the core theme files if you want to show the category image. The easiest way is to insert column layouts then add an Image element for each category. Link the category images on the category pages.

    Best regards,
    Ismael

    in reply to: Firefox issue's with Enfold #313774

    Hi!

    Thank you for using Enfold.

    What is the current resolution of your monitor? When you say resize the browser, you mean “zooming the browser out”? Please add this on Quick CSS or custom.css:

    @media only screen and (min-width: 1600px) {
    #top #main .sidebar {
        left: -1px;
    }
    }

    Regards,
    Ismael

    Hi!

    Glad you figured it out. Thank you so much for sharing! :)

    Regards,
    Ismael

    Hi!

    Thanks for sharing! :)

    Cheers!
    Ismael

    in reply to: Custom Icon Font Error #313767

    Hi thjnk_ag!

    Thank you for using Enfold.

    Please contact your host and ask them to enable the ZipArchive php class which is currently disabled on your installation.

    Best regards,
    Ismael

    in reply to: Change of the height of a contact form #313766

    Hey peterd!

    Thank you for using Enfold.

    You can use this:

    #top .avia_ajax_form .text_input, #top .avia_ajax_form .select, #top .avia_ajax_form .text_area {
    padding: 10px;
    height: 50px;
    }

    Best regards,
    Ismael

    in reply to: delete rounded corners of a button? #313764

    Hey peterd!

    Thank you for visiting the support forum.

    You can remove the border radius with this on Quick CSS or custom.css:

    body div .avia-button, .avia_image {
    border-radius: 0;
    }

    Best regards,
    Ismael

    in reply to: Customize height of a color section #313763

    Hey peterd!

    Thank you for using the theme.

    First, add the “peter” on the ID Section field of the Color Section. Your code should work by then. If possible, please give us a link to the actual website. We would like to inspect the Color Section.

    Best regards,
    Ismael

    in reply to: Fullwidth Easy Slider css class and custom id. #313761

    Hi pbennion!

    Thank you for using Enfold.

    1.) If you want to have a next section button on the color section, please refer to this link: https://kriesi.at/support/topic/color-section-background-image-as-url/

    2.) It is not actually full screen, it is a standard height chosen to cater most screen sizes.

    3.) You can use the Fullscreen Slider if you want a “fullscreen” slider. There’s a difference between Fullwidth Easy Slider and Fullscreen Slider.

    Best regards,
    Ismael

    in reply to: Child theme – Settings are not working #313760

    Hi!

    Thank you for the info.

    Have you tried deleting the enfold_child.css inside the dynamic_avia folder? Regenerate it again by toggling any settings on Enfold > Theme Options. Please activate the child theme then we’ll check the General Styling panel. Before activating the child theme, export the theme settings file then import it back after.

    Best regards,
    Ismael

    in reply to: Google In-Page Analytics on Buttons #313756

    Hi ihf-eramstad!

    Thank you for using Enfold.

    You need to add the _trackEvent() method on the button. Edit config-templatebuilder > avia-shortcodes > button.php. Find this coed on line 226:

    $output .= "<a href='{$link}' class='avia-button ".$this->class_by_arguments('icon_select, color, size, position' , $atts, true)."' {$blank} {$style} >";
    

    Add the onclick attribute provided by GA. Refer to this link: https://developers.google.com/analytics/devguides/collection/gajs/eventTrackerGuide#SettingUpEventTracking

    You should replace the code above with something like this:

    $output .= "<a href='{$link}' onClick='_gaq.push(['_trackEvent', 'Videos', 'Play', 'Baby\'s First Birthday']);' class='avia-button ".$this->class_by_arguments('icon_select, color, size, position' , $atts, true)."' {$blank} {$style} >";
    

    Best regards,
    Ismael

    in reply to: Move Color section below page content #313745

    Hey Tim!

    Thank you for using Enfold.

    My answer on that query is a bit abrupt and a little misguided. Anyway, I’m not sure why it is closed. It is true that Color Sections will always be fullwidth and it will always push the sidebar below. What you can do to avoid this is to set the page to No Sidebar then use the Widget Area element and place it inside a column layout, either on top or bottom of a Color Section. Basic setup would be 3/4 column plus 1/4 column, all content placed on the 3/4 column and the Widget Area element on the 1/4 column which is basically the sidebar. You can then place the Color Section on top or bottom of the columns.

    Cheers!
    Ismael

    in reply to: Error with accordion slider #313738

    Hey!

    Thank you for using Enfold.

    Please refer to this link on how to fix it: https://kriesi.at/support/topic/accordion-slider-msg-error/#post-299271

    Best regards,
    Ismael

    in reply to: Posts not visible when published #313736

    Hey MennoPlace!

    Thank you for using Enfold.

    Do you have any plugin or server cache? Or maybe it’s just a browser cache? Try creating a new post then check the masonry page on another browser or computer.

    Best regards,
    Ismael

    in reply to: Lightbox doesn´t work #313734

    Hey Cora!

    Thank you for using Enfold.

    Looks like you’re using the NextGen Gallery plugin as lightbox. Unfortunately, we don’t provide support for third party plugins as stated on our support policy. The latest version of the theme has a different lightbox plugin (MagnificPopUp) which is probably not compatible with NGG.

    Regards,
    Ismael

    in reply to: Enfold and the SEO WordPress Version 1.5.5.3 #312711

    Hey!

    What is the website? Please create another thread. I’ll close this one for now.

    Best regards,
    Ismael

    in reply to: Hiding All from Accordion tab #312704

    Hi bemofunny!

    Thank you for using Enfold.

    You can add this on Quick CSS or custom.css to remove the “All” sort:

    .taglist a:first-child, .taglist a:first-child + span.tag-seperator {
    	display: none;
    }

    Unfortunately, it’s not possible to change the order of the tabs.

    Cheers!
    Ismael

    in reply to: Complete Transparent Header & Menu #312703

    Hi JPOsteen!

    Thank you for using the theme.

    Set the page to have a transparent header then you can add this on Quick CSS or custom.css:

    .av_header_transparency {
    display: none;
    }
    
    .header-scrolled {
    display: block;
    }

    If you want a smoother effect, you can try to create a jquery script but the task falls beyond the scope of support so you have to find someone to do it for you. Please visit Envato Studio or Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.

    Cheers!
    Ismael

    in reply to: Featured image not displaying #312699

    Hi!

    Thank you for the info and sorry for the delay.

    You can have two different set up for the blog overview page but not on single post view like you have right now. If you want to remove the small-preview image on the single post view or the blog post itself, use this on Quick CSS or custom.css:

    .single .blog-meta {
    display: none;
    }
    
    .single-practitioner .blog-meta {
    display: block;
    }

    Regards,
    Ismael

    in reply to: Two Different Blog Views #312697

    Hey leeroythegreat!

    The previous thread is not closed yet. Please avoid creating duplicated post. I’ll close this one.

    Cheers!
    Ismael

    in reply to: Google fonts not loading #312696

    Hey!

    Like I said, the grid.css doesn’t have anything to do with fonts. Try to toggle the Font settings again, see if that works.

    Regards,
    Ismael

    in reply to: Using 'accordion Slider' plugin full width #312693

    Hi!

    OK. Just to be clear, you want the Accordion Slider to span full width? Is that correct? Or are you using another plugin for the accordion slider? Note that we don’t provide support for third party plugin if that’s what you’re trying to fix here. Please post the login details here. Let me check the post with the accordion slider.

    Best regards,
    Ismael

Viewing 30 posts - 56,101 through 56,130 (of 67,207 total)