Hi Kirsty
1. For your Virtuemart modules try adding the following to the Custom CSS field of your templates parameters...
[code type=css].yagVmCategoryView, div#yagVmOverWrap {color: #000000;}[/code]
For RS Modials try adding the following...
[code type=css].RSWS_testimonial {color: #000000;}[/code]
2. In your modules mod_j51imgaelinkhover.php (../modules/mod_j51imgaelinkhover/mod_j51imgaelinkhover.php) try replacing the following...
<div class="j51imagelinkhover">
<div class="j51imagelinkhover<?php echo $j51_moduleid; ?>" >
<div class="j51imagelinkhover_border">
<div class="j51container effect" style="background-image: url("/<?php echo $j51_image; ?>")";>
<div class="mask">
<a href="/<?php echo JRoute::_("index.php?Itemid={$hover_link}") ?>" class="info" >Image Link</a>
</div>
</div>
</div>
</div>
<?php if($j51_title != "") : ?>
<h3><?php echo $j51_title; ?></h3>
<?php endif; ?>
<?php if($j51_text != "") : ?>
<p><?php echo $j51_text; ?></p>
<?php endif; ?>
<?php if($j51_buttontext != "") : ?>
<div class="j51button"><a href="/<?php echo JRoute::_("index.php?Itemid={$hover_link}") ?>" class="info" ><?php echo $j51_buttontext; ?></a></div>
<?php endif; ?>
</div>
With...
<div class="j51imagelinkhover">
<?php if($j51_title != "") : ?>
<h3><?php echo $j51_title; ?></h3>
<?php endif; ?>
<?php if($j51_text != "") : ?>
<p><?php echo $j51_text; ?></p>
<?php endif; ?>
<?php if($j51_buttontext != "") : ?>
<div class="j51button"><a href="/<?php echo JRoute::_("index.php?Itemid={$hover_link}") ?>" class="info" ><?php echo $j51_buttontext; ?></a></div>
<?php endif; ?>
</div>
<div style="height:35px;"></div>
<div class="j51imagelinkhover<?php echo $j51_moduleid; ?>" >
<div class="j51imagelinkhover_border">
<div class="j51container effect" style="background-image: url("/<?php echo $j51_image; ?>")";>
<div class="mask">
<a href="/<?php echo JRoute::_("index.php?Itemid={$hover_link}") ?>" class="info" >Image Link</a>
</div>
</div>
</div>
</div>
3. Would you have a URL to an example of this module p?
Ciarán