Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #29221
    #140072

    When you edit your page, you will find Partner/Logo element under Media Elements and Content slider under Content Elements.

    #140073

    Actually the “Content Slider” is a “content element” and the “logo/partner slider” a media element. Try to re-upload all theme files and clear your caches (browser, server, etc. caches).

    #140074

    Hey Dude,

    I have updated the theme manually and again, twice via the theme update via the dashboard and I am still not seeing the content slider or the partner / logo element. Can I replace any files via FTP to bring about the above additions?.

    Can you tell me what the content slider actually does?, just add a section from your page as a slider?

    Thankyou

    Gary

    #140075

    Hi,

    Please try it on a different browser. Remove browser cache then reload the page a few times. Are you sure you got the latest version of Enfold?

    Regards,

    Ismael

    #140076

    Hi Ismael,

    I am running WP 3.6 and Enfold 2.1

    I deleted cache and history, tried to access my site in Chrome, Safari and FF, still cannot see the above, new files…

    Is there any way I can update the Avia Builder manually via FTP?.

    I reloaded the page several times but no change….saved the page several times and updated, no change.

    Thankyou

    Gary

    #140077

    Hi,

    Please check config-templatebuilder > avia-shortcodes folder. Do you see the logoslider.php and the contentslider.php files?

    Regards,

    Ismael

    #140078

    Hey Ismael,

    They were missing, yet the update said complete, odd?, no matter. I simply added the php files from the update – downloads, seems to be working now, thankyou sir.

    Gary

    #140079

    Hey Ismael,

    Logo / partner is working fine. Could you tell me the CSS to get rid of the one pixel outline?.

    If I do not select the previous and next arrows to show, is there any way to reduce this 21 px space – where the arrows would be?:

    <div class=”avia-smallarrow-slider-heading”><div class=”new-special-heading”> </div><div class=”avia-slideshow-arrows avia-slideshow-controls”>PreviousNext</div></div>

    Just for feedback, I don’t understand the purpose / difference of the content slider, compared to the other sliders in the theme, would be cool to see an example on the theme on Themeforest.

    Thankyou for all your help.

    Gary

    #140080

    The difference is that the image sliders and the post sliders do not support custom content. The image slider can just display images with captions, the post slider can display posts. The content slider allows you to slide any text or content (including shortcodes) – many users requested this feature and thus we decided to implement it.

    2) No, you can’t hide the space by default. If you want to hide it open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodescontentslider.php and replace

    $output .= "<div class='avia-smallarrow-slider-heading'>";
    $output .= "<div class='new-special-heading'>".$heading."</div>";

    with

    $heading_class = '';
    if($navigation == 'no') $heading_class .= ' no-content-slider-navigation ';
    if($heading == '&nbsp;') $heading_class .= ' no-content-slider-heading ';

    $output .= "<div class='avia-smallarrow-slider-heading $heading_class'>";
    $output .= "<div class='new-special-heading'>".$heading."</div>";

    The use following css code to hide the space if no title & control buttons are set

    .no-content-slider-navigation.no-content-slider-heading{
    display: none;
    }

    #140081

    Hi Dude,

    I tried to edit the contentslider.php, but I could not get it to work, I then tried the quick CSS, but couldn’t get that to work either. There is still <div new-special-heading space>

    I also tried hacking together some CSS to get rid of the avia logo element box shadow, but without success.

    Thankyou for the feedback about the content slider.

    If you have any other ideas, I would be grateful.

    I left the logo element in the site under the main slider for reference: http://www.naturaloutlook.com

    Thanks Dude

    Gary

    #140082

    I though you want to remove the padding from the content slider but now I noticed you want to remove it from the logo slider. Open up /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/logoslider.php and replace

    $output .= "<div class='avia-smallarrow-slider-heading'>"

    with

    $heading_class = '';
    if($navigation == 'no') $heading_class .= ' no-logo-slider-navigation ';
    if($heading == '&nbsp;') $heading_class .= ' no-logo-slider-heading ';

    $output .= "<div class='avia-smallarrow-slider-heading $heading_class'>";

    and insert following code into the quick css field

    .no-logo-slider-navigation.no-logo-slider-heading{
    display: none;
    }

    #140083

    Apologies for not being clearer Dude. Thankyou for the feedback.

    1). My issue is getting rid of the div class=’new-special-heading'</div> space above the logo section.

    2). Can you tell me how to get rid of the 2px shadow-box on the avia-logo-element ctr

    Thankyou

    Gary

    #140084

    Hey,

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

    .avia-logo-element-container.avia-logo-slider.avia-content-slider.avia-smallarrow-slider.avia-content-slider-active.avia-content-slider1.avia-content-slider-odd.avia-builder-el-2.avia-builder-el-no-sibling .new-special-heading {
    display: none !important;
    }

    2.) To remove the border or box shadow, use this:

    #top .avia-logo-element-container img {
    box-shadow: none;
    }

    Regards,

    Ismael

    #140085

    Excellent, thanks Ismael, you guys are so smart!.

    Thankyou,

    Gary

Viewing 15 posts - 1 through 15 (of 15 total)
  • The topic ‘Logo/partner element & Content Slider’ is closed to new replies.