Support Forum

Please note that this forum is only available to you in read only mode. In order to contribute to this conversation you will need to renew your subscription.

organica Logo aera resize?

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

I am using the organica template which I love by the way...

I need to have the logo area larger could you point me to the code to do that with out breaking up the menu area on the right, where it says basecamp. I tried to adjust teh top code but I still ended up with the white space

View Here marcom.xtramark.com/
new install and joom1.5

thanks in advance
  • debra townsend's Avatar
  • debra townsend
  • 12 Month basic
  • 64 posts
  • 1 Thanks
  • Karma: 0
The administrator has disabled public write access.
I believe you just need to modify the height rule in line template_css.css, line 103:

#veryTop {
background:#FFFFFF none repeat scroll 0 0;
height:110px;
margin-left:0;
width:100%;

Or have I misunderstood your request?
  • Seth's Avatar
  • Seth
  • Moderator
  • 8358 posts
  • 225 Thanks
  • Karma: 202
The administrator has disabled public write access.
I tried that before I wrote and no luck, is there another area that needs to be modified to match this change
  • debra townsend's Avatar
  • debra townsend
  • 12 Month basic
  • 64 posts
  • 1 Thanks
  • Karma: 0
The administrator has disabled public write access.
Hi Debra,

I think you have a couple options. You can put a style directly on the image that should push things down here on around line 280 of index.php

<a href="<?php echo $this->baseurl ?>/"><img src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/images/logo.png" alt="logo" style="height:300px;" /></a>

If you don't want it to push things down, you could position:absolute and it would lay on top, by editing the same line similar to this

<a href="<?php echo $this->baseurl ?>/"><img style="position: absolute; z-index: 1000; width: 300px; top: 5px;" src="/templates/jborganica-joomla1.5/images/logo.png" alt="logo"/></a>

Cheers,
Jeremy
  • Jeremy's Avatar
  • Jeremy
  • 12 Month Developer
  • 407 posts
  • Karma: 15
The administrator has disabled public write access.

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

Happy Campers