slider text

How might I remove both text bars from the slider?
when I clear out the text it still leaves an image on my photos.

Comments

user
Submitted by admin on Mon, 10/13/2014 - 01:58

What theme you are using.

user
Submitted by Ghost on Tue, 10/14/2014 - 23:36

lava 7.x-1.1
I love the look of the theme.

user
Submitted by admin on Wed, 10/15/2014 - 08:20

You need to delete few codes manually.

1) Open templates/page--front.tpl.php in any text editor.

2) Find and delete following codes:

<div class="slider-title">
<div class="slidertitle"><?php echo theme_get_setting('slider_one_title'); ?></div>
<div class="slidertitle"><?php echo theme_get_setting('slider_two_title'); ?></div>
<div class="slidertitle"><?php echo theme_get_setting('slider_three_title'); ?></div>
</div>
<div class="slider-text">
<div class="slidertext" style="display: none;"><?php echo theme_get_setting('slider_one_desc'); ?></div>
<div class="slidertext" style="display: none;"><?php echo theme_get_setting('slider_two_desc'); ?></div>
<div class="slidertext" style="display: none;"><?php echo theme_get_setting('slider_three_desc'); ?></div>
</div>

Save the file. Done!!!

user
Submitted by Ghost on Fri, 10/17/2014 - 02:09

Thanks!