I was wondering how I replace the Bootstrap Slider with Static Image on Home Page. I only want to have one image there at all times.
Thanks.
if you set only one slide, then it will be shown as a static image
Thanks Roman,
This works however still leaves the navigation buttons on each side and also the bar down the bottom where I could place text, is there a way to remove these as well.
Thanks
insert in the Custom CSS field:
#bootstrap-slider .carousel-control {
display:none;
}
Hi Roman,
Where about in the Custom-CSS.php file do I insert, when I put it in the same area as the other #bootstrap stuff the website only displays White.
I’m not sure how I attached the custom-css.php file for you to view.
Thanks.
those changes insert in Appearance -> Theme Options -> Custom CSS
Thanks Roman,
That worked perfectly, I still have the black bar down the bottom of the image, is there code also to remove this?
Thanks.
Apply the following css and it should hide them.
#bootstrap-slider .carousel-caption
{
display:none;
}
.menu-back .container
{
display:none;
}
Thanks Roman and Alok, that worked like the treat,
The code I entered was:
#bootstrap-slider .carousel-control
{
display:none;
}
.carousel-caption
{
display:none;
}
.menu-back .container
{
display:none;
}
Thanks Again
The topic Replace Bootstrap Silder with Static Image on Home Page is closed to new replies