Forum Replies Created

Viewing 30 posts - 60,091 through 60,120 (of 67,539 total)
  • Author
    Posts
  • in reply to: woocommerce enfold best practices #239248

    Hi!

    Glad you figured it out. :)

    Regards,
    Ismael

    in reply to: Enfold theme not working with Yoast SEO plugin #239247

    Hey nowhere!

    Can you please give us a link to the website? Maybe there are stuck settings from a previous plugin, deactivate all plugins then test it again.

    Regards,
    Ismael

    in reply to: Insert Partner/Logo Element? #239245

    Hi!

    Please flush the permalink settings. Go to Settings > Permalink then click the “Save” button once. That should fix the 404 error for portfolio items.

    Regards,
    Ismael

    Hey ttem!

    Can you please post the link to the website? You can use cache and minify plugin to speed up the page load. Common plugins that are used are:

    https://wordpress.org/plugins/bwp-minify/

    https://wordpress.org/plugins/w3-total-cache/

    Regards,
    Ismael

    in reply to: Slider not visible on IE 8 #239196

    Hey anantkale!

    You’re using an old version of the theme. Please download the latest version on your themeforest account. Update the theme via FTP. Watch this video by Devin: http://vimeo.com/channels/aviathemes/67209750

    This should fix a lot of IE issues.

    Cheers!
    Ismael

    in reply to: Problem getting full width image for header #239194

    Hi aliquill!

    What is the size of the logo you’re trying to upload? On header layout, choose logo center and menu below. Make sure that you use the full size when you upload the image as logo. Add this on Quick CSS or custom.css:

    .logo, .logo a, .logo a img {
    width: 1030px;
    height: 200px;
    }

    Adjust the width and height values.

    Regards,
    Ismael

    in reply to: Transparent Header #239192

    Hi!

    Looks like you managed to make the header transparent. Please remove browser cache then reload the page a few times.

    Regards,
    Ismael

    in reply to: Main menu background & 1030 wide, start at left side #239191

    Hey dalboslampen!

    You can add this on Quick CSS or custom.css:

    .html_header_top.html_logo_center .main_menu ul:first-child {
    display: block;
    width: auto;
    }

    Regards,
    Ismael

    in reply to: Menu style #239189

    Hi rhinocorp!

    You can change the main menu color using this on Quick CSS or custom.css:

    .header_color .main_menu ul:first-child > li > a {
    color: red;
    }

    For the submenu, you can use this:

    .header_color .main_menu .menu ul li a {
    color: blue;
    }

    Regards,
    Ismael

    Hey tlow87!

    Can you please give us a link to the website? A screenshot of what you’re tying to do will help. Please try this on Quick CSS or custom.css:

    #top .social_bookmarks {
    position: fixed;
    top: 30px;
    left: 0;
    }

    Cheers!
    Ismael

    in reply to: Want to recreate the "Features" page on the demo #239175

    Hi!

    You can create a custom link on Appearance > Menus then include the id of the tab. Something like this:

    http://www.yoursite.com/thispage/#tab-id-2

    This will open the second tab on the “thispage” page with the tab element.

    Cheers!
    Ismael

    in reply to: Blog Style Advanced Layout Editor #239170

    Hi Michael!

    Thank you for using the theme. I hope you’re doing great.

    Can you please post the link to the website? We don’t usually support third plugins especially when the theme already has the plugin’s feature included, in your case the Quick CSS or custom.css. Maybe, you’r not using the right selectors to change the style of a certain element. We’ll try to find the issue with ALB. Please contact the plugin author for more info.

    Regards,
    Ismael

    Hi!

    You can resize the logo using this at the very bottom of Quick CSS or custom.css:

    @media only screen and (max-width: 480px) {
    .responsive .mobile_slide_out .logo {
    float: left;
    width: 80%;
    }
    }

    Regards,
    Ismael

    in reply to: Map Tooltips #239163

    Hi Sistah!

    You can specify the width and height directly on the “Marker Tooltip” field. Something like this:

    <div class="" style="overflow: auto; width: 200px; height: 100px;">
    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
    </div>
    

    Best regards,
    Ismael

    in reply to: enfold upgrade #239161

    Hi!

    Please add this at the very bottom of Quick CSS or custom.css:

    @media only screen and (max-width: 767px) {
    #top #menu-item-search {
    display: block !important;
    position: absolute;
    right: 60px;
    top: -30px;
    }
    }

    Cheers!
    Ismael

    in reply to: woocommerce enfold best practices #239160

    Hey!

    You can add something like this on functions.php if you want to remove the enfold configurations for woocommerce:

    add_action('init','remove_woocommerce_config');
    function remove_woocommerce_config(){
    remove_action( 'woocommerce_after_shop_loop_item', 'avia_add_cart_button', 16);
    remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );
    }

    Cheers!
    Ismael

    Hey!

    You need to set the splash page on Enfold > Frontpage settings.

    Cheers!
    Ismael

    Hey Steven!

    You can edit includes > helper-main-menu.php, find this code on line 101 which renders the logo:

    echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', $addition, 'strong', true);
    

    You can add the image code below, something like this:

    echo "<div class='header-addition'>CONTENT OR IMAGE HERE</div>";
    

    Best regards,
    Ismael

    in reply to: Enfold Theme Not Working in Chrome and Firefox #239156

    Hey!

    I can see that you’re using version 2.5.4. Please download the latest version 2.6.1 which includes a lot of css fixes. Download it on your themeforest account then update the theme via FTP. Watch this video by Devin: http://vimeo.com/channels/aviathemes/67209750

    Regards,
    Ismael

    in reply to: Enfold Slider — Contact into slider #239147

    Hey!

    You’re using a very old version of the theme. Looks like there are unclosed shortcodes, please check that. Please download the latest version on your themeforest account then update the theme via FTP. Watch this video by Devin: http://vimeo.com/channels/aviathemes/67209750

    Best regards,
    Ismael

    in reply to: Header social icons #239145

    Hi!

    I’m not really sure why the editor is not showing on the Appearance panel. Did you add any plugins before or modify any theme files? Anyway, you can still edit the theme files via FTP.

    Best regards,
    Ismael

    in reply to: Map issue #239143

    Hey Tecrane!

    I can see the issue. We’ll fix it on the next patch. For the meantime, please place it inside a color section.

    Best regards,
    Ismael

    in reply to: Add widget to header #239140

    Hi Tecrane!

    Please refer to this link: http://codex.wordpress.org/Function_Reference/dynamic_sidebar

    Basically, what you need is to register a widget area using the register_sidebar function then render that widget area on the header using the dynamic_sidebar function. You can add the code on includes > helper-main-menu.php. For further customization, please visit Werkpress.

    Cheers!
    Ismael

    in reply to: Autoplay on Easy Slider #239138

    Hey tomgraziani!

    Kriesi haven’t added an autoplay option for videos, he’s still working on it. Might be added on the upcoming updates of the theme.

    Best regards,
    Ismael

    in reply to: Tag Cloud Styling #239137

    Hey!

    You can find it on css > layout.css, look for the section /*tagcloud*/.

    Cheers!
    Ismael

    in reply to: Extra Element / Header Phone Number #239133

    Hey!

    Please enable the “Header Secondary Menu”, the header_meta container will be disabled when you turn off the secondary menu.

    Best regards,
    Ismael

    Hey!

    Please contact your host then ask them to increase upload size limit and the post_max_size limit. I want to disable all your plugins but I don’t want to mess up with the settings. Is it ok if I disable them?

    Regards,
    Ismael

    in reply to: Different font appearance in Windows vs. Mac #239129

    Hi!

    I checked the website on Chrome Windows 8 and it the font weight is set to bold. Please add this on Quick CSS or custom.css:

    .main_color .heading-color, .main_color a.iconbox_icon:hover, .main_color h1, .main_color h2, .main_color h3, .main_color h4, .main_color h5, .main_color h6, .main_color .sidebar .current_page_item > a, .main_color .sidebar .current-menu-item > a, .main_color .pagination .current, .main_color .pagination a:hover, .main_color strong.avia-testimonial-name, .main_color .heading, .main_color .toggle_content strong, .main_color .toggle_content strong a, .main_color .tab_content strong, .main_color .tab_content strong a, .main_color .asc_count, .main_color .avia-testimonial-content strong, .main_color div .news-headline {
        color: #222;
        font-weight: 600;
    }

    Cheers!
    Ismael

    in reply to: Enfold Theme Not Working in Chrome and Firefox #239127

    Hi!

    What errors are you getting? I checked the website on Chrome and Firefox Windows 8 and it’s working properly. Can you please list specific issues that you’re getting on your end? A screenshot will help.

    Best regards,
    Ismael

    Hi Sistah!

    1.) Insert a color section then place a 2/3 and 1/3 column layouts side by side. Insert the gallery element on the 2/3 column and the text block inside the 1/3 column.

    2.) That is a browser feature that the theme can’t control. You can’t disable that without disabling the image title attribute.

    3.) Add this on Quick CSS or custom.css:

    #top div .avia-gallery .avia-gallery-big img {
    height: 100%;
    }

    Best regards,
    Ismael

Viewing 30 posts - 60,091 through 60,120 (of 67,539 total)