Results 1 to 2 of 2

Optimization Help!!!

This is a discussion on Optimization Help!!! within the Off-Topic & Chit Chat forums, part of the Focus on Members category; Ok here's the story. I'm working on a personal website related to mortgages. I'm using a template that came with ...

  1. #1
    Member Rude Awakening's Avatar
    Real Name
    Ali
    Join Date
    Apr 2006
    Posts
    53
    Liked
    0 times

    Question Optimization Help!!!

    Ok here's the story.
    I'm working on a personal website related to mortgages. I'm using a template that came with PSD's (photoshop files) and have edited them to my liking.

    Obviously search engines arent going to be able to search anything if the site is full of images.

    So I've attempted to save the PSD's for the web and then open the html files with Dreamweaver to manually add the text. The problem with this is that I can't get the layers I'd like in the background, the text doesnt look as nice, it takes forever to make the tables work and etc.

    There has to be a better approach that I'm possibly just not noticing. If anyone can think of a way to make my life easier I'd appreciate a response.

    Thanks!

  2. #2
    Senior Member briansol's Avatar
    Real Name
    Brian
    Join Date
    Apr 2006
    Location
    Central CT, USA
    Posts
    6,981
    Liked
    8 times
    Rule #1. avoid text as images where ever possible.

    store the image as a background image af an html element.

    ie,

    Code:
    <style>
    h1 { background: url(some.jpg) no-repeat; }
    </style>
    
    <h1>text here will have a background on it</h1>

    If you MUST use text on the image, consider using one of the many image replacement techniques: mezzoblue *§* revised image replacement

    90% of the template you have is probably useless garbage. I say that because you can optimize the template so much more using css and proper html. using a 100x 10 image that repeats down a left nav bar is MUCH more efficient than a 100x600 image that doesn't repeat.

    i'm available for free lance work if you need help. send me a pm.

Similar Threads

  1. Search Engine Optimization
    By raj in forum Off-Topic & Chit Chat
    Replies: 2
    Last Post: 04-07-2006, 06:31 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •