Tagged: Blog, LayerSlider
-
AuthorPosts
-
June 19, 2013 at 1:41 pm #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!
June 20, 2013 at 7:16 am #125582Hi,
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
June 20, 2013 at 12:25 pm #125583Hi 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
June 20, 2013 at 6:05 pm #125584Hi,
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
June 23, 2013 at 8:39 am #125585Hi,
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?
June 24, 2013 at 3:49 pm #125586Hi 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
-
AuthorPosts
- The topic ‘Blog / LayerSlider changes’ is closed to new replies.