|
In order to be able to use Front Page to make a banner for a Joomla site some steps have to be taken.
1. Create buttons using the dynamic buttons
2. Get all other images needed by using the "insert image" function
3.Save the file in the default prompted directory, my documents>>my websites , this is very important as it is the only place to save them safely if you want to modify the buttons later, like change the text or the style.
4. Copy all the buttons AND images from documents>>my websites, that includes the banner and any other images in addition to the interactive dynamic buttons.
5. Paste all the images in the images AND root folder of online Joomla or JSAS installation.
- Another better way to do it is also this way:
A. Create folder in
My Documents>My Websites, can do it manually prior or using Front Page, manually is a little safer. Name that folder something like "button2images" - Put all images in there but keep the html file in the root of the folder.
When going live to the server, simply copy the whole "button2images" folder to the server in the root directory, all images will get instantly linked the code looks like this:
<body onload="FP_preloadImgs(/*url*/'button2images/button6.jpg',/*url*/'button2images/button7.jpg')">
<table border="1" width="100%" id="table1">
<tr>
<td>
<img border="0" id="img1" src="button2images/button5.jpg" height="20" width="100" alt="Button Text" onmouseover="FP_swapImg(1,0,/*id*/'img1',/*url*/'button2images/button6.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img1',/*url*/'button2images/button5.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img1',/*url*/'button2images/button7.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img1',/*url*/'button2images/button6.jpg')" fp-style="fp-btn: Braided Column 5" fp-title="Button Text"></td>
</tr>
</table>
As Demonstrated the code looks clean and Front Page makes the proper path that will make things work in Joomla everytime without screwing up!
|