By Ghost on Mon, 10/13/2014 - 01:39
Forums:
How might I remove both text bars from the slider?
when I clear out the text it still leaves an image on my photos.
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
What theme you are using.
lava 7.x-1.1
I love the look of the theme.
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!!!
Thanks!