1. mclaugh01
  2. Free Templates / Extensions
  3. Tuesday, 14 October 2014
  4.  Subscribe via email
Here's my site: http://www.enonvalley.maumeevp.org/

I need to remove the spacing after the custom module. I know it needs to be changed here:

<div class="module" style="min-height: 370px;"> … </div>

Anyway, I used firebug (see attached) to figure out where it is located but it is an inline element and I am not sure what that means or where the original file is located.

If anyone can tell me where to make the change I would greatly appreciate it.
Accepted Answer Pending Moderation
0
Votes
Undo
Hello

To amend this issue could you try removing all of the following from your templates scripts.php (../templates/j51_oxygen/php/scripts.php)..


<!-- Equalize Top1 Module Heights -->
<script type="text/javascript" src="/<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/js/equalizer.js" charset="utf-8"></script>
<script type="text/javascript" >
window.addEvent('domready', function () {
var columnizer = new Equalizer('.top-1 .module').equalize('height');
});
</script>

<!-- Equalize Top2 Module Heights -->
<script type="text/javascript" >
window.addEvent('domready', function () {
var columnizer = new Equalizer('.top-2 .module').equalize('height');
});
</script>

<!-- Equalize Contenttop Module Heights -->
<script type="text/javascript" >
window.addEvent('domready', function () {
var columnizer = new Equalizer('.contenttop .module').equalize('height');
});
</script>

<!-- Equalize Contentbottom Module Heights -->
<script type="text/javascript" >
window.addEvent('domready', function () {
var columnizer = new Equalizer('.contentbottom .module').equalize('height');
});
</script>

<!-- Equalize Bottom1 Module Heights -->
<script type="text/javascript" >
window.addEvent('domready', function () {
var columnizer = new Equalizer('.bottom-1 .module').equalize('height');
});
</script>

<!-- Equalize Bottom2 Module Heights -->
<script type="text/javascript" >
window.addEvent('domready', function () {
var columnizer = new Equalizer('.bottom-2 .module').equalize('height');
});
</script>

<!-- Equalize Base1 Module Heights -->
<script type="text/javascript" >
window.addEvent('domready', function () {
var columnizer = new Equalizer('.base-1 .module').equalize('height');
});
</script>

<!-- Equalize Base2 Module Heights -->
<script type="text/javascript" >
window.addEvent('domready', function () {
var columnizer = new Equalizer('.base-2 .module').equalize('height');
});
</script>


Ciarán
  1. more than a month ago
  2. Free Templates / Extensions
  3. # 1
Accepted Answer Pending Moderation
0
Votes
Undo
As always you are amazing and always know just what to do, thank you!
  1. more than a month ago
  2. Free Templates / Extensions
  3. # 2
  • Page :
  • 1


There are no replies made for this post yet.
Be one of the first to reply to this post!