I'm using the Levels ReadyTheme with some mods, and I'm trying to add some new text to the home page in the SFNT page content.
Originally, I had the three boxes below the hero image displayed 65 pixels higher (top: -65px;), so they overlapped the hero image. But when I added some text that I wanted snugged up under the three images, it left a gap as though the images were still in their original position. The "View additional industry solutions" looked silly, all by itself.
Here is the code with the elevated images; the slight-lift raises the images 65px (top: -65px;) but when I tried to do the same thing to the text, it didn't work. It is as though the browser has reserved that area for image display, despite their new position:
<div class="breaker clear"></div>
<div style="margin: auto;">
<div class="column whole medium-one-third align-center sfnt-promo slight-lift">
<mvt:item name="readytheme" param="image( 'sfnt_promo_left' )" />
<div class="breaker show medium-hide"></div>
</div>
<div class="column whole medium-one-third align-center sfnt-promo slight-lift">
<mvt:item name="readytheme" param="image( 'sfnt_promo_middle' )" />
<div class="breaker show medium-hide"></div>
</div>
<div class="column whole medium-one-third align-center sfnt-promo slight-lift">
<mvt:item name="readytheme" param="image( 'sfnt_promo_right' )" />
</div>
<div style="top: -65px; text-color: black;">
<p align="center"><a href="/industries.html"><strong>View additional industry solutions</strong></a></p>
</div>
<div class="breaker clear"></div>
</div>
Originally, I had the three boxes below the hero image displayed 65 pixels higher (top: -65px;), so they overlapped the hero image. But when I added some text that I wanted snugged up under the three images, it left a gap as though the images were still in their original position. The "View additional industry solutions" looked silly, all by itself.
Here is the code with the elevated images; the slight-lift raises the images 65px (top: -65px;) but when I tried to do the same thing to the text, it didn't work. It is as though the browser has reserved that area for image display, despite their new position:
<div class="breaker clear"></div>
<div style="margin: auto;">
<div class="column whole medium-one-third align-center sfnt-promo slight-lift">
<mvt:item name="readytheme" param="image( 'sfnt_promo_left' )" />
<div class="breaker show medium-hide"></div>
</div>
<div class="column whole medium-one-third align-center sfnt-promo slight-lift">
<mvt:item name="readytheme" param="image( 'sfnt_promo_middle' )" />
<div class="breaker show medium-hide"></div>
</div>
<div class="column whole medium-one-third align-center sfnt-promo slight-lift">
<mvt:item name="readytheme" param="image( 'sfnt_promo_right' )" />
</div>
<div style="top: -65px; text-color: black;">
<p align="center"><a href="/industries.html"><strong>View additional industry solutions</strong></a></p>
</div>
<div class="breaker clear"></div>
</div>
Comment