|
|
Get your containers right with CSS!I've been beating my head against the wall (proverbially, at least) with what should be a simple CSS style issue: I want to change the color and style of some text links on a Web page. I've been trying this:
but it wasn't working.Finally it dawned on me: the "anchor container" can't accept all CSS styles, so a quick change to this: <span class="bl"><a href="uses.shtml">Google Adwords and Overture</a></span>and *poof* it's all working properly. The moral of this story: make sure that the containers you're using can accept the styles you're specifying. Note that you can always pop over to W3C (aka the World Wide Web Consortium) and read the official CSS specification documents too, if you're so inclined.
Related HTML, JavaScript and Web Site Programming articles:
✔ How to Create Predefined Google Image Search Links?
Thanks for the Amazon URL [see Creating Amazon Search Links]. That worked beautifully. In fact, I sent you $5.00 for coffee in thanks....
✔ Can I embed a Facebook search box on my blog site?I've seen your articles about how to add a Twitter or Google search box on a Web page, but I have a tougher...
✔ Can I use CSS for drop shadows on my blog?I want to give my site a bit of a facelift and add some neat graphical elements. One of which is drop shadows....
✔ How can I embed interactive photo panoramas on my site/blog?I read through your blog entry about how to take panoramic photos with iOS 6 and an iPhone 5 and got enthused. I've...
✔ How can I create a Twitter search URL shortcut?I'd like to add a few Twitter search links to my Web site. Is that possible, or does Twitter prohibit this sort of...
Let's stay in touch!
Sign up for my weekly AskDaveTaylor Newsletter and you'll receive even more tech and gadget help
right to your inbox, along with exclusive news and industry updates. It's good stuff. I promise!
Categorized:
HTML, JavaScript and Web Site Programming
(Article 3722,
Written by Dave Taylor)
Tagged: Previous: The one page all sites should have: a sitemap Next: Monetizing site searches with Google WebSearch Reader Comments To Date: 1
I do have a comment, now that you mention it!Check This Out Too... |
Recent Entries
Look for Answers
Recommended
All Our Categories
Apple iPad Help
Articles and Reviews Auctions and Online Shopping Blogs and Blogging Building Web Site Traffic Business and Management Computer and Internet Basics d) None of the Above Facebook Help Google Gmail Help Google Plus Help HTML, JavaScript and Web Site Programming Industry News and Trade Shows iPhone and Cell Phone Help iPod, Sony PSP and MP3 Player Help Kindle Fire Help Mac OS X Help Pay Per Click (PPC) Advertising Pinterest Help Search Engine Optimization (SEO) Shell Script Programming Tech Support Video Help The Writing Business Twitter, LinkedIn and Social Network Help Unix and Linux Help Video Game Tips and Help Windows PC Help Find Me on Google+ ADT on G+ |
Isn't it because of the way the CSS is written? The given code says "take anchors _within_ an element of class 'bl' and set the given properties." If this code is this:
a.bl { color: #000; font-weight:900 }
a.bl:link { color: #0f0; }
a.bl:visited { color: #00f; }
a.bl:hover { color: #000; background-color: #ff6 }
It should work, no? Now it says "take anchors of class 'bl' and set the given properties."