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.

Logos with same code appear in different ways...

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

Hello: I do not understand why the same code for a logo in a custom html module looks differently in two templates both modules are placed in the logo position..

CORPORATION TEMPLATE ( text is to the right of the image)
www.oasiswebdevelopment.com/Hudson/

VENTURE TEMPLATE (text drops below the image)
www.oasiswebdevelopment.com/Hudson2/

CODE:
<div><img src="images/Hudson_Art/halfmoon.png" alt="" /></div>
<div style="color: #fff; font-size: 25px; font-weight: normal; line-height: 32px;">Hudson <br />Advisor <br />Services, Inc.</div>

In the layout of the Venture template… the logo position stretches the full width of the screen.. I have tried using float and code using {zen-row} (which the template just does not recognize)

Please help. Thank you. Happy New Year

Eliabeth
  • Elizabeth Wallace's Avatar
  • Elizabeth Wallace
  • 12 Month basic
  • 404 posts
  • Karma: 0
The administrator has disabled public write access.
Elizabeth a quick pointer
Here is the respective code for those images
Not sure about the number of </div> tags at the end but more importantly the code in the first row
Hope that helps
<div id="logo" class="zg-col zg-col-4">
<div class="custom">
<div>
<img src="/Hudson/images/hudson_art/halfmoon.png" alt="ship square">
</div>
<div style="color: #fff; font-size: 25px; font-weight: normal; line-height: 32px;">
Hudson
<br>
Advisor
<br>
Services, Inc.
</div>
</div>
</div>

<div id="logo" class="zg-col zg-col-12">
<div class="moduletable ">
<div class="module-inner">
<div class="zen-module-body">
<div class="custom">
<div>
<img src="/Hudson2/images/Hudson_Art/halfmoon.png" alt="">
</div>
<div style="color: #fff; font-size: 25px; font-weight: normal; line-height: 32px;">
Hudson
<br>
Advisor
<br>
Services, Inc.
</div>
</div>
</div>
</div>
</div>
</div>
  • Andrew's Avatar
  • Andrew
  • 12 Month basic
  • 509 posts
  • 20 Thanks
  • Karma: 10
Last Edit: 7 years 3 months ago by Andrew.
The administrator has disabled public write access.
Hi Elizabeth,

www.oasiswebdevelopment.com/Hudson/

has

#logo img {
float: left;
}

so the image is floated

Cheers
Paul
  • manh's Avatar
  • manh
  • Moderator
  • 45248 posts
  • 2106 Thanks
  • Karma: 603
The administrator has disabled public write access.
wow thanks paulus.. it worked!
  • Elizabeth Wallace's Avatar
  • Elizabeth Wallace
  • 12 Month basic
  • 404 posts
  • Karma: 0
The administrator has disabled public write access.
You're welcome

Cheers
Paul
  • manh's Avatar
  • manh
  • Moderator
  • 45248 posts
  • 2106 Thanks
  • Karma: 603
The administrator has disabled public write access.

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

Happy Campers