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
Posts: 804
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>