Forum Replies Created

Viewing 30 posts - 62,581 through 62,610 (of 63,457 total)
  • Author
    Posts
  • in reply to: Trouble with accordian feature #124224

    Hi,

    Did you modify anything on the files?

    Please set your Avia Builder to debug mode. Add this on your functions.php

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    return "debug";
    }

    Edit the page, at the bottom of the Avia Builder, look for the actual shortcode of the accordion element. Please paste it here.

    Regards,

    Ismael

    in reply to: Ajax Preview Window Proximity #124197

    Hi,

    I’ll tag Kriesi.

    Regards,

    Ismael

    in reply to: Enfold Accordion Issues – Stopped Toggling #124188

    Hi,

    Please set your Avia Builder to debug mode. Add this on your functions.php

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    return "debug";
    }

    Go to the page with the accordion, look for the actual shortcode of the accordion at the bottom of the Avia Builder. Please paste it here.

    Regards,

    Ismael

    in reply to: Enfold: Layered Sidebar Widget not appearing in IE8 #124065

    Hi,

    It says “In the script on this page, an error has occurred.”

    Can you give us a link to the youtube video? Do you know this link maps.gstatic.com?

    Regards,

    Ismael

    in reply to: Random Div causing formatting issues #124128

    Hi,

    You can add this on your custom.css or Quick CSS to hide it.

    #after_section_1 {
    display: none;
    }

    Regards,

    Ismael

    in reply to: Problem from Ajax portfolio to normal #124123

    Hi,

    I can’t seem to reproduce the issue. Did you try to disable the socket or footer here?

    Regards,

    Ismael

    in reply to: Problem with sidebar #123753

    Hey,

    Glad it is fixed. :)

    Cheers,

    Ismael

    in reply to: Linking gallery images to URL #123975

    Hey,

    Glad it worked.

    Cheers,

    Ismael

    in reply to: Enfold RSS Link #124114

    Hi,

    It works. Check it using FireFox. Chrome doesn’t have rss support.

    Regards,

    Ismael

    in reply to: how to have blog post show only excerpt in "categories" #123741

    Hi,

    1.) You can use the <!–more–> tag to set your excerpt for archive pages.

    http://en.support.wordpress.com/splitting-content/more-tag/

    2.) To remove the archive title, add this on your custom.css or Quick CSS

    .archive.category .main-title {
    display: none;
    }

    Regards,

    Ismael

    in reply to: Inconsistencies in IE8 #123539

    Hi,

    I forgot to adjust the size

    <!--[if lt IE 9]>
    <style>
    .logo a{
    max-height: 100% !important;
    }

    .logo a img{
    height: 150px;
    }

    body .avia-button.avia-color-theme-color, body .avia-button.avia-color-theme-color:hover {
    background: #a6ce39;
    }

    #header_main .container {
    height: 150px !important;
    line-height: 150px !important;
    }
    </style>
    <![endif]-->

    Regards,

    Ismael

    in reply to: how to adjust the height of the footer #124068

    Hi,

    You can adjust the bottom padding. Add this on your custom.css

    #footer {
    padding: 15px 0 0px 0;
    }

    Regards,

    Ismael

    in reply to: Can we move or expand the Search Bar? #122506

    Hi,

    I see you did use the code I gave you. You can make it responsive using this

    /*
    Mobile Styles
    ================================================== */
    /* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */

    @media only screen and (min-width: 768px) and (max-width: 989px) {
    #top #s {
    width: 400px;
    }

    #top #searchsubmit, .ajax_load {
    right: -100px;
    }
    }

    @media only screen and (min-width: 320px) and (max-width: 500px) {
    #top #s {
    width: 250px;
    }

    #top #searchsubmit, .ajax_load {
    right: 10px;
    }
    }

    Regards,

    Ismael

    in reply to: Left sidebar #124042

    Hi,

    You can actually insert the sidebar on a Column element using the Avia Builder. Insert the 1/5 column then add the Sidebar element.

    What do you mean by “approaching a maximum on the left side of the screen”?

    Regards,

    Ismael

    in reply to: Height Issues #123994

    Hi,

    You can edit css > layout.css, find this code

    /*default header: main logo and main menu height. increase max value if you want to use a bigger logo*/
    #header_main .container, .main_menu ul:first-child > li a{ height:88px; line-height: 88px; }

    Something like this:

    /*default header: main logo and main menu height. increase max value if you want to use a bigger logo*/
    #header_main .container, .main_menu ul:first-child > li a{ height:120px; line-height: 120px; }

    To make the title container smaller, add this on your custom.css or Quick CSS

    #top .title_container .container {
    padding: 0 0;
    min-height: 0;
    }

    Regards,

    Ismael

    in reply to: Problem with sidebar #123751

    Hi,

    Please follow this link. Look for Dude’s fix.

    https://kriesi.at/support/topic/custom-widget-areas-not-working-after-upgrade-to-15

    Regards,

    Ismael

    in reply to: Please contribute and translate Enfold #114937

    Hi,

    I think it is doable using qtranslate. You will have a croatian frontend then maintain the english dashboard. You can specify a default language in the qtranslate panel.

    Regards,

    Ismael

    in reply to: Linking gallery images to URL #123973

    Hi,

    @bella_3333: You can use the alt text as an alternative. Click on Gallery element, click on a single gallery image then add the company website on the Alt field. Make sure you include http:// on the domain name like http://www.yoursite.com. Do this for all the images.

    Edit config-templatebuilder > avia-shortcodes > gallery.php then find this code on line 191

    $thumbs .= " <a href='".$link[0]."' data-rel='gallery-".self::$gallery."' data-prev-img='".$prev[0]."' {$class} data-onclick='{$counter}' title='".$description."' ><img {$tooltip} src='".$img[0]."' title='".$title."' alt='".$alt."' /></a>";

    Replace it with

    $thumbs .= " <a href='".$alt."' data-rel='gallery-".self::$gallery."' data-prev-img='".$prev[0]."' {$class} data-onclick='{$counter}' title='".$description."' ><img {$tooltip} src='".$img[0]."' title='".$title."' alt='".$alt."' /></a>";

    @adrianwalton: I’m not sure if that is possible. Let me tag the rest of the support team.

    Regards,

    Ismael

    in reply to: Can Team Member Photos Link to a page #123979

    Hi,

    Actually, you can insert the team member images on the Team Member Description field. Insert the Team Member element but don’t insert a Team Member Image..

    <a href="www.yoursite.com"><img src="http://localhost/kriesi/enfold/wp-content/uploads/2012/04/21.jpg"></a>
    Description here.

    The downside is the image will be at the bottom of the team member name.

    Regards,

    Ismael

    in reply to: LOGO NOT UPLOADING #123966

    Hi,

    After the logo, select the image size then click “Insert image as logo”.

    Regards,

    Ismael

    in reply to: How to Insert Slide Show with LayerSlider #123959

    Hi,

    I think the layerslider shortcode is not working. Please go to the Advance Layout Editor > Media Elements then insert the LayerSlider.

    I’ll tag Kriesi so that he can check this out.

    Regards,
    Ismael

    in reply to: Show comments in blog index #98181

    Hi,

    @imagestudios: This is Angular topic, I think you have Enfold. Yes, that is the same.

    Find this code

    $avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
    get_template_part( 'includes/loop', 'page' );

    Replace it with:

    $avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
    get_template_part( 'includes/loop', 'page' );

    //wordpress function that loads the comments template "comments.php"
    comments_template( '/includes/comments.php');

    Regards,

    Ismael

    in reply to: Inconsistencies in IE8 #123537

    Hi,

    I edited Dude’s code a little.

    <!--[if lt IE 9]>
    <style>
    .logo a{
    max-height: 100% !important;
    }

    .logo a img{
    height: 150px;
    }

    body .avia-button.avia-color-theme-color, body .avia-button.avia-color-theme-color:hover {
    background: #a6ce39;
    }

    #header_main .container, .main_menu ul:first-child > li a {
    height: 88px !important;
    line-height: 88px !important;
    }
    </style>
    <![endif]-->

    This will keep the header large on IE8.

    Regards,

    Ismael

    in reply to: Problem on Advanced Layout Editor. #123909

    Hi,

    Please Import the Dummy Data on Enfold > Theme Options. You can also watch these videos to learn more about the theme:

    https://vimeo.com/channels/aviathemes

    Please download Enfold 1.6 then try to increase your php memory limit.

    http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Regards,

    Ismael

    in reply to: Blog – Date to the left #123905

    Hi,

    On Settings > General, set the Date Format to custom then place the text “F j” which means Month and Date.

    Open includes > loop-index.php, find this code:

    $link = get_author_posts_url($post->post_author);

    At the bottom place this code:

    $date = get_the_date();

    Then find this code:

    echo "<a href='{$link}' class='post-author-format-type'><span class='rounded-container'>".$gravatar.$icon."</span></a>

    Replace it with:

    echo "<a href='{$link}' class='post-author-format-type'><span class='rounded-container'>".$date."</span></a>

    You can style the date text using .round-container class.

    Regards,

    Ismael

    in reply to: Layering CSS Drawn elements #123888

    Hi,

    It is not behind the highlight box, rather on top of it. Maybe move the highlight box up a bit.

    #top .avia-menu-fx {
    z-index: 0;
    top: 29px;
    }

    Regards,

    Ismael

    in reply to: non-fixed header not working (display as fixed) #122946

    Hi,

    Can you give us a link to your website? Please try a different header then reload the page. Flush the header a few more times, see if the options start working as they should.

    Regards,

    Ismael

    in reply to: CONTAINER BORDER – ON/OFF SWITCHING CONTROLS #123532

    Hi,

    Remove the background on the theme options then apply it on a different section manually. Inspect the avia section then look for the unique page id and unique section class. Something like this

    .page-id-1700 #av_section_1.avia-builder-el-8 {
    background-image: url(https://www.andypeck.co.uk/wp-content/uploads/2013/06/trx_border.png) !important;
    }

    .page-id-1700 is the page body class id. #av_section_1 is the section id with a class of .avia-builder-el-8. This is the id of that particular section on your frontpage.

    Regards,

    Ismael

    Hi,

    Actually, the option to pick sizes of the featured image on post slider is not needed because the featured image size will depend on the number of columns. That is why we Kriesi removed it.

    Regards,

    Ismael

    in reply to: Letter "S" Appears In Fullwidth Easy Slider #123767

    Hi,

    Like Dude, I can’t seem to reproduce the issue on any browsers. Can you post a link to your websites so that we can inspect??

    @ambientDes: Thanks for the tip. Did you successfully remove the unwanted character by hiding the controls?

    @fixionmedia: In case you’re wondering how to get rid of the controls, you can add this on your custom.css or Quick CSS

    .avia-slideshow-arrows.avia-slideshow-controls {
    display: none;
    }

    Regards,

    Ismael

Viewing 30 posts - 62,581 through 62,610 (of 63,457 total)