this is how i include css. <link rel="stylesheet" href="/static/blueprint/screen.css" type="text/css" media="screen, projection" /> <link rel="stylesheet" href="/static/blueprint/print.css" type="text/css" media="print" /> <!--[if IE]> <link rel="stylesheet" href="/static/blueprint/ie.css" type="text/css" media="screen, projection" /> <![endif]-->
also even after including the alt text for image, i get the same problem. this is in a facebook fbml app. any idea what could be wrong? thanks On Sun, Dec 20, 2009 at 10:35 AM, Goulven CHAMPENOIS <[email protected]>wrote: > You probably included the print stylesheet for screen devices. Make sure to > use the proper values for the media, rel and type attribute of the CSS > links. > > <link rel="stylesheet" href="blueprint/screen.css" type="text/css" > *media="screen, projection"*> > > > > <link rel="stylesheet" href="blueprint/print.css" type="text/css" > *media="print"*> > > > > Additionally, you should also include the proper alt text for your image, > especially since it's a link. Also, the unit is implicit and unnecessary for > the width attribute of the img tag. > > It's recommended to regularly validate your HTML code because, from > personal experience, 75% of CSS errors come from HTML errors (improperly > nested tags, missing closing quotes, etc). > On windows, you can use the Firefox add-on HTML tidy ( > https://addons.mozilla.org/en-US/firefox/addon/249). > > Happy coding! > > > On Sun, Dec 20, 2009 at 5:27 PM, kevin <[email protected]> wrote: > >> i am setting this html content via ajax >> >> <a href="/image"><img width="456px" title="view your image!" >> src="/static/x.img"></a> >> >> and below the image i am getting the link '/image' as text and it is >> underlined. it looks really ugly. how do i remove the link below the image? >> this happens only with blueprint >> thanks. >> >> -- > Goulven Champenois > > -- > You received this message because you are subscribed to the Google Groups > "Blueprint CSS" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<blueprintcss%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/blueprintcss?hl=en. > -- You received this message because you are subscribed to the Google Groups "Blueprint CSS" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/blueprintcss?hl=en.
