|
|
|
Award winning SEM agency bigmouthmedia hires Senior Search Strategist from iProspect
Bigmouthmedia has appointed Karin McLean to the newly created role of Operations Manager, McLean was previously Search Strategist at Massachusetts-based Search Marketing firm iProspect.
The appointment marks another significant growth phase...
CSS: The Basics - ID's and Classes ... Correct
Css Cascading Style Sheets Two types of style sheets: Internal and External Internal - You insert your style code right into your html code. These stylesheets should only be used if you are intending to create a specific page with a specific...
Designing for Search Engines
When you design a website, it's easy to focus on what your
visitors are going to see. What you have to realise, though, is
that you're going to have another kind of visitor with a
completely different agenda: they're not going to be looking...
Size Matters, It's True what they say!
Yes, it really does and the smaller your webpage the better it
is.
Size is an area where people can lose focus when they are
concentrating on the look and branding of their website.
In print and other forms of media, size and complexity...
Web Page Optimization
We all want to have the most attractive website that leaves a
visitor wide-eyed and completely dazzled. Usually an extremely
attractive website design involves lots of graphical elements,
increasing the overall page size which causes the page...
|
|
| |
|
|
|
|
CSS Browser Detection - The complete guide
Different browsers, different CSS interpretations! There will be a time when you'll need to hide some CSS rules from a particular browser, or even all the CSS file! In this articles I'll try to compile all possible types of Browser detection technics and provide examples. So let's start with the easier one!
Browser detection for Netscape
Netscape 4 is probably the dumbest browser when it comes to CSS support, extremely limited and many times erroneous! As the browser's market share of Netscape is below 0.5% it became natural to hide the CSS file from it! The method used for this is the import directive that will make the browser to display a version of the site completely without CSS.
Here's the directive you have to call: (style type="text/css")@import url(wise-designscom.css);(/style)
Browser Detection for IE Mac computers
This browser "died" when Microsoft announced there would be no
more updated versions of it. Now this browser fell in desuse and there are a wide range of CSS technics that IE/Mac doesn't interpret well! Therefore many webmasters started to code their CSS sites so that they would work correctly on this browsers. Contrary to Netscape users, these weren't neglected.
The hide technic:
/* Hide from IE-Mac */ #header {padding-bottom:3em} #footer {padding-top:1.5em} /* End hide */
IE/Mac won't see these commands but will display the content even without those rules! Now... if you have a specific area of your site that isn't vital to your visitors you can just hide it completely from this browser without having the trouble to even try and make it look better within the possible! Here's how:
#noiemac {display: none}
/* Hide from IE-Mac */ #noiemac {display: block} /* End hide */
The first rule hides it all from IE/Mac (e.g content to hide here!
|
|
|
|
|
|