logo in template

About the template and stylesheet - and changing the menu
Post Reply
roze
Posts: 270
Joined: Tue Jun 03, 2008 7:13 am
Location: NL
Contact:

logo in template

Post by roze » Sun Jul 13, 2014 8:17 pm

I want to plce this logo in my template of http://www.stichtingvaart.nl:

Code: Select all

<img title="sponsors" src="./userfiles/images/2014/sponsors/Praktijk%20Dommelen.gif" alt="sponsors" width="193" height="154">
just above:

Code: Select all

 <li><?php echo templug_printlink();?></li>
how can I fix that?
Rob Zeijen,

Valkenswaard (NL)

cmb
Posts: 14225
Joined: Tue Jun 21, 2011 11:04 am
Location: Bingen, RLP, DE
Contact:

Re: logo in template

Post by cmb » Sun Jul 13, 2014 11:45 pm

You may try the following (template.htm line 62ff):

Code: Select all

<ul class="subnav">
<li><img title="sponsors" src="./userfiles/images/2014/sponsors/Praktijk%20Dommelen.gif" alt="sponsors" width="193" height="154"></li>
<li><?php echo templug_printlink();?></li>
Christoph M. Becker – Plugins for CMSimple_XH

Tata
Posts: 3586
Joined: Tue May 20, 2008 5:34 am
Location: Slovakia
Contact:

Re: logo in template

Post by Tata » Mon Jul 14, 2014 3:13 am

Or to have to logo really out of toc(); and out of "subnav"

Code: Select all

</ul>

<img title="sponsors" src="./userfiles/images/2014/sponsors/Praktijk%20Dommelen.gif" alt="sponsors" width="193" height="154"></li>

<ul class="subnav">
Here you can then consider

Code: Select all

<img title="sponsors" src="./userfiles/images/2014/sponsors/Praktijk%20Dommelen.gif" alt="sponsors" style="width:100%;height:auto"></li>
CMSimple.sk
It's no shame to ask for an answer if all efforts failed.
But it's awful to ask without any effort to find the answer yourself.

roze
Posts: 270
Joined: Tue Jun 03, 2008 7:13 am
Location: NL
Contact:

Re: logo in template

Post by roze » Mon Jul 14, 2014 4:45 am

thankx!
Rob Zeijen,

Valkenswaard (NL)

Post Reply