Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
If we do not hit our goal we will be forced to close the site.

Current status: https://keepboardsalive.com/

Annual subs are best for most impact. If you are still undecided on going Ad Free - you can also donate using the Paypal Donate option. All contribution helps. Thank you.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.

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

  • 29-06-2011 08:29PM
    #1
    Registered Users, Registered Users 2 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, Registered Users 2 Posts: 10,240 ✭✭✭✭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