Support Forum

  • Page:
  • 1

Move the title to the side

zentoolsIf you use Zentools please post a review at the Joomla! Extensions Directory.

It seems easy to slightly modify this extension and allow the title of each category or content to be to the right of the picture...

In tmpl\default.php, you need just to modify
<?php if($titleBelow) {?>
<a class="captifyTitle" href="<?php echo $item->link;?>">
<?php echo $item->title;?>
</a>
<?php }?>
to
<?php if($titleBelow) {?>
<div class="ccItemTitle">
<a class="captifyTitle" href="<?php echo $item->link;?>">
<?php echo $item->title;?>
</a>
</div>
<?php }?>
And in captifyContent.css to add
.ccItemTitle {
float:left;
}
You can also add the following lines
.ccItemTitle,.viewport{
padding:15px;
margin:5px;
height:125px;
background-color:#cccccc;
font-size:14px;
font-weight:bold;
vertical-align:middle;
}
.ccItemTitle {
width:125px;
}
And finally obtain a menu like a matrix... (see picture).
Thanks !!
Attachments:
  • fortemps's Avatar
  • fortemps
  • JB Pro
  • 1 posts
  • 1 Thanks
  • Karma: 1
The administrator has disabled public write access.
The following user(s) said Thank You: Seth
B) Thanks for sharing.
  • Seth's Avatar
  • Seth
  • Moderator
  • 8358 posts
  • 225 Thanks
  • Karma: 202
The administrator has disabled public write access.

zentoolsIf you use Zentools please post a review at the Joomla! Extensions Directory.

Happy Campers