> That is the text I want to position.  Correct me If I'm wrong but what you 
> mean by putting 
> inside the <a> element is:

> {a #videogallery} ?

You're wrong.

Look at your HTML.  Your code says this:

<A href="blah">
  <img/>
</a>  <-- <a> element closed
If you don't have Flash... <-- text NOT inside <a> element

The code needs to look like this:

<a href="blah">
  <img/> If you don't have Flash... <-- text IS inside <a> element
</a> <-- <a> element closed.

---Tim
______________________________________________________________________
css-discuss [[email protected]]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to