so i have a site on sitesled which i am practicing uploading premade layouts to
when i download a layout it give me an index, style, and then a folder of pictures.
what do i upload?
if I upload the index and style, the pictures aren't in the layout
also, do i edit the style or the index to change the page?
any help would be appreciated!I'm confused on how to upload html layouts to a site, please help!?In general, in your site ROOT directory, you have a file called index.htm, index.html, or index.php. You MUST have one of them.
You can have a file called %26quot;styles.css%26quot; is you use CSS.
It is a good practice to store the images in another sub-directory (i.e. %26quot;pics%26quot;). So, you upload your images in: root/pics/.
In your html file, the images are called using:
%26lt;img src='pics/myimage.jpg'%26gt;
I'm confused on how to upload html layouts to a site, please help!?I assume you know how to upload files using FTP programs.
1. You need to upload everything including index, styles and pictures into the public_html folder.
2. If images didn't show up, then you need to check your index source code, I assume its in HTML
3. If that HTML is correct, then you need to check the style file and i assume its an CSS file. I'm confused on how to upload html layouts to a site, please help!?Assuming that this is how your directory server for your website is laid out:
/index.html
/styles.css
/images/*
* Images for website in this folder
You upload index.html, styles.css, and /images/ either through some upload interface through your browser (if your host provides such), or through an FTP client like FlashFXP (if you host provides FTP access).