Tagged: ,

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #25038

    Hi guys, I have some questions and hope you can help me

    BLOG

    1. I use the Singel Author – big pic Blog View. I would like to edit the Meta data because I just need the Title and the date, how can I remove categorie and tags..?

    I also would like to center all blog-images by default and remove the hover effect.

    LAYERSLIDER

    How is it possible to change the height of the fullwidth-layerslider on mobile devices? I like the new fullwidth-slider and would like the same height (on Iphone) with the layerslider.

    Thank you!

    #125582

    Hi,

    1.) Edit loop-index.php, find this code

    comments_popup_link(  "0 ".__('Comments','avia_framework'),
    "1 ".__('Comment' ,'avia_framework'),
    "% ".__('Comments','avia_framework'),'comments-link',
    "".__('Comments Disabled','avia_framework'));
    echo "</span>";
    echo "<span class='text-sep'>/</span>";

    Replace it with:

    //comments_popup_link(  "0 ".__('Comments','avia_framework'),
    //"1 ".__('Comment' ,'avia_framework'),
    //"% ".__('Comments','avia_framework'),'comments-link',
    //"".__('Comments Disabled','avia_framework'));
    echo "</span>";
    //echo "<span class='text-sep'>/</span>";

    Find this code:

    echo $cats;
    echo '</span><span class="text-sep">/</span>';

    Replace it with:

    //echo $cats;
    //echo '</span><span class="text-sep">/</span>';

    2.) Which slider ? Full width Easy Slider ? or Advance Layer Slider?

    Regards,

    Ismael

    #125583

    Hi Ismael,

    thx for reply.

    I would like to change the height of the Layerslider on mobile devices.

    The Slider of

    should look like

    on mobile

    Regards

    Amir

    #125584

    Hi,

    It is a bit complicated. You should probably use the Full Width Slider.

    You can try this

    @media only screen and (max-width: 767px) {
    .ls-wp-fullwidth-container {
    height: 300px !important;
    }

    .ls-wp-container {
    height: 300px !important;
    width: 100% !important;
    }

    .ls-inner {
    width: 100% !important;
    height: 300px !important;
    }

    .ls-layer.ls-active > .ls-bg {
    height: 300px !important;
    margin-top: -150px !important;
    }
    }

    Regards,

    Ismael

    #125585

    Hi,

    this seems to work, thx!

    The only problem is, the background image of the slide is not scaling to the new-container on portait-mode. Any Idea how to fix that?

    #125586

    Hi Amirb,

    We would need to see what you’ve got now live and inspect it live just to make sure we don’t go in the wrong direction from here. So if you can provide a link we’ll take a look and go from there.

    Regards,

    Devin

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Blog / LayerSlider changes’ is closed to new replies.