Friday, 25 April 2014

Simple settings for Firefox and Internet Explorer on Blogger

You will have noticed , many of us are setting up our blogs with our standard , that the image of the pattern changes when you visit your page from another Browser. Many of us who deal with the Blogger work in Chrome. So far I consider him the most reliable ( I speak always about Blogger and not Pages on other platforms ) .

As a second option I prefer Firefox, but lately I realized that I do some thing . Some settings in relation to the dimensions of my change.



So we need to find some code that intervenes only in these specific Browsers .
It's very simple.
To make settings in Internet Explorer use the following code above the tag </ head>:


<! - [if IE]>
<style>
The CSS CODE WHO WANT TO MAKE A PARTICULAR SET
</ style>
<! [endif] ->
To make settings in Mozilla Firefox use the following code above the tag </ head>:

 <style>
@-moz-document url-prefix () {
The CSS CODE WHO WANT TO MAKE A PARTICULAR SET
}
</ style>


No comments:

Post a Comment