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
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

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

  • 29-06-2011 8: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,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