Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Bootstrap in IE
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  8 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Dejan  
View profile  
 More options May 24 2012, 12:01 pm
From: Dejan <dejan.svet...@gmail.com>
Date: Thu, 24 May 2012 09:01:31 -0700 (PDT)
Local: Thurs, May 24 2012 12:01 pm
Subject: Bootstrap in IE

Hi,

I'm trying to get Boostrap to work in IE but I just can't manage to do that.
Here is the output: http://i47.tinypic.com/4hv020.png

The thing is, if I go to http://twitter.github.com/bootstrap/ then the
forms also work on IE. I've looked through their source code but didn't
find anything specific to add to mine, to make it work.

Help please


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Phil Doughty  
View profile  
 More options May 24 2012, 12:30 pm
From: Phil Doughty <greenzt...@gmail.com>
Date: Thu, 24 May 2012 20:30:08 +0400
Local: Thurs, May 24 2012 12:30 pm
Subject: Re: Bootstrap in IE

You might wanna consider the html5
boilerplate<http://html5boilerplate.com/>option ie:

<!doctype html public "✰"> <!--[if lt IE 7]> <html lang="en-us"
class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> <!--[if IE 7]> <html
lang="en-us" class="no-js lt-ie9 lt-ie8"> <![endif]--> <!--[if IE 8]> <html
lang="en-us" class="no-js lt-ie9"> <![endif]--> <!--[if gt IE 8]><!--> <html
lang="en-us" class="no-js"> <!--<![endif]--> <head>

 Phil Doughty

On 24 May 2012 20:01, Dejan <dejan.svet...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Barry vd. Heuvel  
View profile  
 More options May 24 2012, 12:52 pm
From: "Barry vd. Heuvel" <barry...@gmail.com>
Date: Thu, 24 May 2012 18:52:37 +0200
Local: Thurs, May 24 2012 12:52 pm
Subject: Re: Bootstrap in IE

 Only that code shouldn't make a difference, it is only to define specific
css for different IE versions.

What version of IE are you using? Only IE9 or newer support border-radius.
If you use IE9, but have no rounded corners, check that you are not in
compatibility mode.

Press F12, to open de developer tools and check the document mode and set
it to IE9.
If that is the problem, add this code (in your head) to force the rendering
with the latest IE engine available (Or Chrome frame):
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dejan  
View profile  
 More options May 24 2012, 1:04 pm
From: Dejan <dejan.svet...@gmail.com>
Date: Thu, 24 May 2012 10:04:41 -0700 (PDT)
Local: Thurs, May 24 2012 1:04 pm
Subject: Re: Bootstrap in IE

Hello,
I've found out that the framework I am using is giving me this problem, so
I have to check into that. It's not Bootstraps fault.

Thank you for your help :)


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dejan  
View profile   Translate to Translated (View Original)
 More options May 28 2012, 10:25 am
From: Dejan <dejan.svet...@gmail.com>
Date: Mon, 28 May 2012 07:25:46 -0700 (PDT)
Local: Mon, May 28 2012 10:25 am
Subject: Re: Bootstrap in IE

Hello,

I've found out that it wasn't really the frameworks fault but IEs that used
compatibility mode. If anybody will also have this problem, then you need
to add this to your head:
<!--[if IE]>
        <meta http-equiv="X-UA-Compatible" content="IE=edge" >
<![endif]-->

Which means that IE will work in his latest version.

Dne četrtek, 24. maj 2012 19:04:41 UTC+2 je oseba Dejan napisala:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Kevin Ridgway  
View profile  
 More options Jun 3 2012, 9:42 am
From: Kevin Ridgway <kridg...@gmail.com>
Date: Sun, 3 Jun 2012 06:42:45 -0700 (PDT)
Local: Sun, Jun 3 2012 9:42 am
Subject: Re: Bootstrap in IE

Well, you don't have to put the conditional comment there for a meta tag.
As Phil said, http://h5bp.com is a great resource for some of these things
that Twitter Bootstrap hasn't included yet.

See this line in HTML5Boilerplate, on how to include that
tag: https://github.com/h5bp/html5-boilerplate/blob/master/index.html#L12

To style specifically for IE in your CSS (addressing your CSS issues), you
can include these lines 2 - 6, from h5bp, in your site, at the top, as
indicated: https://github.com/h5bp/html5-boilerplate/blob/master/index.html#L2

Hope that's a more complete answer.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Anderson Narciso  
View profile  
 More options Sep 14 2012, 9:33 am
From: Anderson Narciso <andersonnarc...@gmail.com>
Date: Fri, 14 Sep 2012 06:33:10 -0700 (PDT)
Local: Fri, Sep 14 2012 9:33 am
Subject: Re: Bootstrap in IE

I use for erros...

<!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]--><!--[if IE]><script type="text/javascript">document.createElement("article");document.createEle ment("nav");document.createElement("section");document.createElement("heade r");document.createElement("aside");document.createElement("figure");docume nt.createElement("legend");document.createElement("footer");</script><![end if] -->


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
milton VARGAS  
View profile   Translate to Translated (View Original)
 More options May 22, 1:59 pm
From: milton VARGAS <milton...@gmail.com>
Date: Wed, 22 May 2013 10:59:02 -0700 (PDT)
Local: Wed, May 22 2013 1:59 pm
Subject: Re: Bootstrap in IE

buenas es tengo un problema soy  nuevo en diseño en wordprees y mas  nuevo
aun en bootstrap
estoy diseñando algo en bootstrap pero  se me bien en chrome y safari  pero
morzilla y explor no se ve correctamente
alguno de usted que me pueda decir como corregir eso


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »