Twtitter Bootstrap Installation Issues
Solution 1:
Have you checked the permissions on the folder /var/www/icyou/site_root/ ? Also you might want to open up the "inspect element" dialog (if you're in chrome) it will surely say what's going on with your css links
Solution 2:
If I am understanding question correctly, you are not seeing the 'hover' effect when you mouse-over the button?
Bootstrap handles multiple classes on a single element so for example if I was to implement a button I would do something like:
Btn-primary assign the color to the button Btn-md assigns the size of the button. Using simply 'btn' is going to give you the bare minimum.
Try adding a few additional class attributes to the button and see if that helps.
Solution 3:
I figured it out! Both answers were really helpful, but the comment was closer to what I was having issue with. It's what I thought and a relative path issue. My bootstrap folder was in the directory above my apache document root, and apparently you cannot have a path that goes beyond the scope of the document root!
New path looks like this <link href="/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
Post a Comment for "Twtitter Bootstrap Installation Issues"