Topic: Some Issues... |
|
---|---|
Author | Thread |
Obsessive-Compulsive (I) Inmate From: NC |
posted 05-23-2006 20:06
Hey everyone! I'm new to the board and a recent Internet Technologies graduate. I've been asked to optimize a website for search engines for a customer and I recommended to them that they allow me to change the content of their site from an image to text. Since the site was designed using tables I decided to use a DIV element so that I could change the image itself, take the text off of it that is, and then place text over the image with the DIV. It looks great except in resolutions other than 1024 x 768 which I knew would happen since I used absolute positioning but now I'm not 100% sure how to go about fixing it. I've tried a few things but nothing worked, I was hoping someone more experienced and willing to share their knowledge could help me. |
Maniac (V) Mad Scientist From: Rochester, New York, USA |
posted 05-23-2006 21:11
Redoing the whole layout in a CSS only variation might be what is best for search engine optimization. code: <table border="0" cellpadding="0" cellspacing="0" width="583"> <tr> <td style="background: url('images/nav_home_main_r2_c6.jpg'); width: 583; height:417px;padding-top: 50px;padding-left:100px; padding-right: 200px;"> Your text goes in here. </td> </tr> <tr> <td><img name="main_r10_c6" src="images/nav_home/main_r10_c6.jpg" width="583" height="81" border="0" id="main_r10_c6" alt="Empress Water Gardens is located at 2911 Rives Chapel Church Road in Siler City, NC 27344." /></td> </tr> </table>
|
Obsessive-Compulsive (I) Inmate From: NC |
posted 05-24-2006 15:25
Thank you so much for your help, I'm going to do that |