Hi,
From your explanation I see that you trying to make redesign not just customization. The template ognen06 (and most other templates) is highly structured site designed primarily for 800 x 600 screen resolution. (Current stat shows 24.4% of surfers are browsing using a screen resolution of 800x600 or bigger.
1024 x 768 - 44.97%
800 x 600 - 24.4%
1280 x 1024 - 13.63%
1152 x 864 - 6.45%)
You have several solutions to solve that problem with different screen resolutions:
1. Make fluid design by setting the table width to 100%. I wouldn't use this method for the current template (ognen06), because the slices and the design of the template are not suitable for liquid pages. You should make new slices from the original .psd file (that one we supply you) and put specific images as a background to fill extra space on the table.
2. Use a java script file to redirect to 3 different frames sets, 800x600, 1024x768, 1152x864. Example:
<SCRIPT LANGUAGE="JavaScript">
function redirectPage() {
var url800x600 = "http://yoursite.com/800/index.html";
var url1024x768 = "http://yoursite.com/1024/index.html";
var url1152x864 = "http://yoursite.com/1152/index.html";
if ((screen.width == 800) && (screen.height == 600))
window.location.href= url800x600;
else if ((screen.width == 1024) && (screen.height == 768))
window.location.href= url1024x768;
else if ((screen.width == 1152) && (screen.height == 864))
window.location.href=url1152x864;
else window.location.href= url800x600;
}
window.onload = redirectPage;
</script>
3.Also have similar method to redirect to different Style Sheets (CSS).
<SCRIPT LANGUAGE="JavaScript">
if (screen.width == 800) {
document.write('<link rel="stylesheet" type="text/css" href="800x600.css">');
}
if (screen.width == 1024) {
document.write('<link rel="stylesheet" type="text/css" href="1024x768.css">');
}
if (screen.width == 1152) {
document.write('<link rel="stylesheet" type="text/css" href="1152x864.css">');
}
</script>
You should use the .psd file to export 3 different size of the template in above methods.
Good luck!
Ognen