|
|
 |
BOOK: Beginning ASP.NET 3.5 : in C# and VB BOOK ISBN: 978-0-470-18759-3
 | This is the forum to discuss the Wrox book Beginning ASP.NET 3.5: In C# and VB by Imar Spaanjaars; ISBN: 9780470187593 |
|
Welcome to the p2p.wrox.com Forums.
You are currently viewing the BOOK: Beginning ASP.NET 3.5 : in C# and VB BOOK ISBN: 978-0-470-18759-3 section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
|
 |

July 11th, 2008, 11:29 PM
|
|
Registered User
|
|
Join Date: Jul 2008
Location: Milwaukee, Wisconsin, USA
Posts: 7
Thanks: 4
Thanked 0 Times in 0 Posts
|
|
Ch 8: <asp:image> inside <a> & ext.CSS (pg. 274)
How do you create a zero border linked image utilizing a user control, <asp:Image> control, and an external style sheet that can be viewed site wide?
Said another way...
I understand how the inline example works with the default zero border (style="border-width:0px;"), but how do I bypass the inline version with the external stylesheet based on the two themes discussed in the book?
I also wanted to mention that I am brand new to web programming and I have found this book to be an excellent teaching tool.
|

July 12th, 2008, 05:37 AM
|
 |
Wrox Author
Points: 33,554, Level: 80 |
|
|
Join Date: Jun 2003
Location: Utrecht, Netherlands.
Posts: 10,228
Thanks: 7
Thanked 203 Times in 201 Posts
|
|
Hi epc,
Because the style for the image is defined in-line, it takes precedence over any other CSS that has been set, either with an embedded or an external style sheet.
You can, however, override with !important (doesn't mean "not important" as it would in C# or JavaScript, but means "is important"). You can apply it like this:
Code:
img
{
border: 2px solid red !important;
}
This overrides the in-line style on an image:
<img src="Plough.jpg" style="border: 9px solid green; />
So even if the image has an in-line style for a green, thick border, the img selector overrides this and gives the image a thinner, red border.
For more info: http://webdesign.about.com/od/css/f/blcssfaqimportn.htm
Cheers,
Imar
---------------------------------------
Imar Spaanjaars
http://Imar.Spaanjaars.Com
Everyone is unique, except for me.
Author of Beginning ASP.NET 3.5 : in C# and VB, ASP.NET 2.0 Instant Results and Dreamweaver MX 2004
Want to be my colleague? Then check out this post.
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
 |