Forum Replies Created

Viewing 30 posts - 56,911 through 56,940 (of 67,479 total)
  • Author
    Posts
  • in reply to: Help with header position #304141

    Hi!

    The logo text adjusts properly on mobile screens. It doesn’t being cut off. Please remove browser cache then reload the page a few times.

    Regards,
    Ismael

    in reply to: Gravity form issue with enfold theme and mozilla firefox #304139

    Hi Mauriweb!

    Thank you for using Enfold.

    Please use this on Quick CSS or custom.css:

    #top .input-text, #top input[type="text"], #top input[type="input"], #top input[type="password"], #top input[type="email"], #top input[type="number"], #top input[type="url"], #top input[type="tel"], #top input[type="search"], #top textarea, #top select {
        font-size: 13px !important;
        line-height: 1.3em !important;
        height: 30px;
        min-height: 30px;
    }

    Cheers!
    Ismael

    in reply to: 4 Images in 1/2 page layout module #304138

    Hey mw75!

    Thank you for using the theme.

    You can add a text block inside the 1/3 column layout then insert this on the editor:

    <div class="flex_column av_one_half first">PIC 1</div>
    <div class="flex_column av_one_half ">PIC 2</div>
    <div class="flex_column av_one_half first">PIC 3</div>
    <div class="flex_column av_one_half ">PIC 4</div>

    Best regards,
    Ismael

    in reply to: Small contact icons in footer #304136

    Hey!

    Thank you for using Enfold.

    You can create a temporary post to generate the icon shortcode then copy it. Place it on the text widget right before the phone numbers numbers or addresses. You can also add your own icons. Please refer to this link: http://kriesi.at/documentation/enfold/adding-your-own-icon-fonts/

    Cheers!
    Ismael

    in reply to: snippet code #303659

    Hi!

    I’m not sure what you mean by “safe place” but you should probably ask your host where to properly put this code. Do you want this code inside the <head> tag, <body> etc? If you want to place it under the opening body tag, use this on functions.php:

    function place_random_code() { ?>
    
    <div id="hide-div" itemscope="itemscope" itemtype="http://schema.org/LocalBusiness">
        <span itemprop="name">Sabrostar Fruit Company</span>
        <div itemprop="address" itemscope="itemscope" itemtype="http://schema.org/PostalAddress">
            <span itemprop="streetAddress">Avenida Francisco de Orellana #234, Edificio Blue Towers Piso 15</span>
            <span itemprop="addressLocality">Guayaquil</span>,
            <span itemprop="addressRegion">Guayas</span>
            <span itemprop="addressCountry">Ecuador</span>
            <span itemprop=“email”> (Email address hidden if logged out) </span>
        </div>
        Phone: <span itemprop="telephone">593-4-3709600</span>
        Website: <a itemprop="URL">http://www.sabrostarfruitcompany.com/</a>
     </div>
     
    <?php }
    
    add_action('wp_head', 'place_random_code');

    Use this on Quick CSS to hide it:

    #hide-div {
    display: none;
    }

    Cheers!
    Ismael

    in reply to: Social media in main menu #303657

    Hi!

    I tested this on my installation and it works well. I think you missed the something. Please copy the whole code above on the widget.

    Regards,
    Ismael

    in reply to: Layout Builder and Custom Post #303656

    Hi!

    I’ll ask the rest of the support team if they’re available for this particular task. You can also visit Envato Studio or Werkpress for further customization.

    Cheers!
    Ismael

    in reply to: Slider not working #303653

    Hey!

    Thank you for using Enfold.

    The layer slider seems to be working fine on our installation with jetpack installed. This must be a combination of jetpack with other third party plugin. Please deactivate all plugins except jetpack then test the layer slider again.

    Regards,
    Ismael

    Hi foxtrotstudio!

    Thank you for visiting Kriesi’s support forum.

    Please use this on functions.php:

    add_filter('avf_ajax_search_label_names','avia_change_pt_label_name', 10, 1);
    function avia_change_pt_label_name($label)
    {
    if($label == 'Portfolio Items') $label = 'NEW LABEL HERE';
    return $label;
    }

    Remove browser cache then reload the page a few times.

    Regards,
    Ismael

    in reply to: Button – Remove background #303642

    Hey blankonblank!

    Thank you for using Enfold.

    Do you mind if we take a look at the actual page with the button? We can remove the background of the button via CSS.

    Regards,
    Ismael

    in reply to: How to show both sidebar? #303639

    Hi Jorge!

    No, I’m sorry but it’s not possible. You can create a page with no sidebar then insert 1/5, 3/5 and another 1/5 column layout respectively. Place the content on the 3/5 column then add two different Widget Area element on the 1/5 columns.

    Cheers!
    Ismael

    in reply to: Help with header position #303637

    Hi!

    Not sure where the “[shortcode goes here]” part comes from. Did you add any code on functions.php? Add this on Quick CSS or custom.css to move the title container on mobile device:

    @media only screen and (max-width: 767px) {
    .responsive #main {
    padding-top: 0 !important;
    margin-top: -21px;
    }
    }

    Regards,
    Ismael

    in reply to: Setting a Responsive Image in Header #303635

    Hi davidfavero!

    Thank you for using the theme.

    Please add this on Quick CSS or custom.css:

    @media only screen and (max-width: 767px) {
    div#av_section_1 .avia-full-stretch {
    background-size: 100%;
    }
    }

    Regards,
    Ismael

    in reply to: LayerSlider WP strecthing first slide… but not others? #303634

    Hi!

    Yes, please try to recreate the slide from scratch. Also, please add this on Quick CSS or custom.css:

    @media only screen and (min-width: 1140px) {
    div#first-slide img { 
    width: 100% !important; 
    height: 470px!important; 
    min-width: 100% !important; 
    min-height: 470px!important; 
    }
    }

    Regards,
    Ismael

    in reply to: Extra Avia-section Bug #303622

    Hey davidfavero!

    Thank you for using Enfold.

    The color section has a minimum height of 100px by default so even if it’s empty it will still be 100px in height. You can change that on Quick CSS or custom.css:

    .avia-section {
    min-height: 10px;
    }

    Regards,
    Ismael

    Hi!

    Thank you for using the theme.

    I checked the Blog page and the pagination for blog posts is there right on top of the Tabs element.

    Cheers!
    Ismael

    in reply to: Social media in main menu #303613

    Hey!

    Thank you for the update.

    Please install this plugin: https://wordpress.org/plugins/php-code-widget/

    Go to Appearance > Widgets then insert the PHP Code widget in place of the footer social icons. Add this code:

    <?php 
    
    $social_args 	= array('outside'=>'ul', 'inside'=>'li', 'append' => '');
    $icons = avia_social_media_icons($social_args, false); 
    
    echo $icons;
    
    ?>

    Regards,
    Ismael

    in reply to: Multi-Column Content regions within layout elements #303607

    Hey!

    I guess I answered that last one on the other thread: https://kriesi.at/support/topic/social-media-in-main-menu/

    Regards,
    Ismael

    in reply to: the enfold plugins mack my website run very slow #303605

    Hey!

    There’s a database error connection when I try to check the page. Usually minimizing the image file sizes and number of plugins that you install will greatly improve the performance. These are the things that you can do to optimize the website speed and page load courtesy of the wordpress community:

    1. Optimize all images with AI/Photoshop before uploading to server ‘save as web safe’ jpg
    2. Once all images are on the website, optimize with ewww optimizer plugin twice 1hr 10mins apart.
    3. Install wp-smushit run once to remove jpeg extra data, then uninstall.
    4. Use BWP minify plugin to minify scripts and stylesheets.
    5. Install WP-Super cache, select all recommended settings.
    6. Logout your website, visit every page at least once to create super cache files.
    7. Join Cloudflare setup your website on their CDN, Choose options: Full CDN Optimisation save then activate purge files. once done log out.
    8. Have a cup of coffee.
    9. Visit your site after 20 minutes or so.
    10. Don’t forget to smile.

    Also, getting a dedicated server for your website is a must if you want to fully optimize the speed of the website.

    Regards,
    Ismael

    in reply to: unable to add content to site (photos, text) #303603

    Hey!

    Thank you for the info.

    I tried adding an image to the gallery, it works but saving the page gives me 500 server error. Please try to contact your host, see if they have any idea why this is happening. http://casitasitges.com/wp-admin/post.php?post=2512&action=edit&lang=en

    Best regards,
    Ismael

    in reply to: Responsive sidebar avia builder widget area #303597

    Hi SphereEvenements!

    Thank you for using the theme.

    First, get the body class id of the page by inspecting the source code using google chrome’s inspect element or firebug. Use this on Quick CSS or custom.css to remove the 1/3 column layout of the page on mobile device:

    @media only screen and (max-width: 767px) {
    .page-id-3000 .flex_column.av_one_third.first .avia-builder-widget-area{
    display: none;
    }
    }

    The .page-id-3000 is the page body class id. Yours might be different.

    Best regards,
    Ismael

    in reply to: Social Share buttons – please fix #303594

    Hi!


    @bdaily
    : Please refer to this link in order to remove the parameter: https://kriesi.at/support/topic/social-sharing-buttons-2/

    Cheers!
    Ismael

    in reply to: Background colors conflict with transparent png images #303591

    Hey Marc!

    Thank you for using the theme.

    If you don’t mind, we would like to see the actual page with the post slider. Try to add this on Quick CSS or custom.css to remove the background:

     .slide-image {
    background: transparent;
    }

    Regards,
    Ismael

    in reply to: Social media in main menu #303582

    Hey Justin!

    Thank you for using Enfold.

    Set the social icon position to Display in main header area on Enfold > Header Layout > Extra Elements > Header Social Icons option. You can adjust the top position of the social icons withi on Quick CSS or custom.css:

    #header_main .social_bookmarks {
    top: 90px;
    }

    The top position will depend on the height of the header. Regarding the background, please use this:

    .main_color {
    background-size: 100% !important;
    }

    Regards,
    Ismael

    in reply to: arrow circle icon on media #303578

    Hey hianta!

    Thank you for visiting Kriesi’s support forum.

    Please use this on Quick CSS or custom.css:

    .image-overlay {
    display: none !important;
    }

    Cheers!
    Ismael

    Hey axelfx07!

    Thank you for using Enfold.

    1.) What are the files that you’re trying to use?

    2.) I changed the font on General Styling > Heading Font to Alice and log out. When I came back, the option is still there.

    3.) This is usually cause by html codes not properly closed like h1, strong tags etc. Please check all html codes and make sure that they are close properly. Please give us a link to the actual page where this is happening. We would like to check it.

    Cheers!
    Ismael

    in reply to: Hentry missing in portfolio items using Masonry #303574

    Hi!

    If I am not mistaken, this has been fixed on the latest patch of the theme. Please download the latest version Enfold 2.9. from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Best regards,
    Ismael

    in reply to: The accordions don't working on my page. #303572

    Hi!

    It depends on the kind of files that are created. If they are templates, you can add them on the child theme folder. If possible, place all modifications on the child theme’s functions.php.

    Cheers!
    Ismael

    in reply to: Full Width Image Beneath Header #303567

    Hey blankonblank!

    Thank you for using Enfold.

    Please use this on Quick CSS or custom.css:

    .html_header_transparency #top #wrap_all #main {
    padding-top: 0;
    margin-top: -88px;
    }

    Cheers!
    Ismael

    in reply to: Using arrows instead of list circles #303557

    Hi heufti65!

    Thank you for using Enfold.

    Please use this on Quick CSS or custom.css:

    .entry-content-wrapper div li:before {
    content: '→';
    padding-right: 5px;
    }
    
    ul.disc, .entry-content-wrapper ul {
    list-style: none;
    }
    
    .entry-content-wrapper li {
    margin-left: 0;
    }

    Cheers!
    Ismael

Viewing 30 posts - 56,911 through 56,940 (of 67,479 total)