Hi,
I am pretty new to Joomla. The company i work uses a joomla 1.5 website which was designed before i joined. Now I'm incharge of managing this website by doing some small changes here and there.
Problem : There is a page(not index) containing a few images which are associated with some css.
Now I have to insert another image to this page. I tried doing it by inserting the image from the article manager but this would not reflect on the actual website. When i opened the page on browser and saw the source of the page, I saw the following piece of code which has the images.
<div class="boxgrid captionfull">
<a href="http://www.web1.com/" target="_BLANK">
<img src="http://mywebsite.com/~war/images/photos/info.jpg"/>
</a>
<div class="cover boxcaption">
<h3>Info</h3>
<p>http://www.info.com/</p>
</div>
</div>
<div class="boxgrid captionfull">
<a href="http://www.web2.com/" target="_BLANK">
<img src="http://mywebsite.com/~war/images/photos/spss.jpg"/>
</a>
<div class="cover boxcaption">
<h3>Spss</h3>
<p>http://www.spss.com/</p>
</div>
</div>
<div class="boxgrid captionfull">
<a href="http://www.strategy.com/" target="_BLANK">
<img src="http://mywebsite.com/~war/images/photos/strategy.jpg"/>
</a>
<div class="cover boxcaption">
<h3>Microstrategy</h3>
<p>http://www.strategy.com/</p>
</div>
</div>
Now, all i want to do is to add another <div class="boxgrid captionfull"> tag to this page so that i can add another image. If i do edit html from joomla i can edit only the index page.
Please help
Thanks in advance
Akshay