On Mar 29, 2009, at 5:14 PM, Christopher R wrote: > I'm trying to stylize the text which is an <a> tag within the id > <videogallery> > as seen on this page http://www.thecreativesheep.ca/site/ > animationpage2.html > so that I can move the text here but all that seems to be moving is > the flash icon here is > my style that I have currently: > > #videogallery a { > position: relative; > bottom: -200px; > left: 65px; > } > > All that moves is the Icon not the text.
As Jukka has already pointed out, there is no text within the <a> element in your markup. The following text occurs after the </a>: "You are seeing this because you don't have Adobe Flash plugin installed for your Browser and therefore you are unable to view the animation gallery" So, if that is the text you want to position with the #videogallery a selector, put it inside the <a> element. Jonny ______________________________________________________________________ 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/
