Header's Layout

ben-wan

Joined: 2005-06-03
Posts: 33
Posted: Sat, 2005-06-04 14:34

Hi, I have done the folloing changes in "gallery2\templates\local\global.tpl"

<div id="gsHeader">
<img src="{g->url href="images/gallery_logo_left.jpg"}" alt=""/>
<img src="{g->url href="images/banner.jpg"}" alt=""/>
<img src="{g->url href="images/gallery_logo_right.jpg"}" alt=""/>
</div>

How can I ...
align=center this logo "banner.jpg"
align=right this logo "gallery_logo_right.jpg"

Thank you very much!!!

Sincerely,
Ben

 
lvthunder

Joined: 2003-09-12
Posts: 804
Posted: Sun, 2005-06-05 04:16

Take a look at this site. It says everything about the img tag.

http://www.w3schools.com/tags/tag_img.asp

It looks like this would work.
<div id="gsHeader">
<img src="{g->url href="images/gallery_logo_left.jpg"}" align=left alt=""/>
<img src="{g->url href="images/banner.jpg"}" align=middle alt=""/>
<img src="{g->url href="images/gallery_logo_right.jpg"}" align=right alt=""/>
</div>