Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

fireworks web graphics that are viewable as text as aposed to just a picture

Options
  • 29-06-2011 9:29pm
    #1
    Registered Users Posts: 257 ✭✭


    hey guys whats the best way to use good firework graphics but have some sort of text in them so they can look sharp but be viewed by google crawlers and such?


Comments

  • Registered Users Posts: 10,245 ✭✭✭✭Fanny Cradock


    It's not possible, AFAIK. Programmes such as Fireworks produce images. Images and text are two different entities. You should use <h> tags etc for whatever words you want to be picked up and then use CSS to fire them off the screen if appropriate.

    For example, the below code will move the header "Your Text" off the screen by 9999px but will still be read by crawlers.
    <h1>Your text</h1>
    
    h1{position:absolute; top:-9999px}
    


  • Closed Accounts Posts: 18,163 ✭✭✭✭Liam Byrne


    Log-on wrote: »
    hey guys whats the best way to use good firework graphics but have some sort of text in them so they can look sharp but be viewed by google crawlers and such?

    The only thing close to what you are doing is to make use of the image's alt & title attributes.

    <img src="whatever.gif" alt="The text that you want" title="The text that you want">


Advertisement