I just recently installed bootstrap 3.0 onto my site and have been playing around with. I've got a couple questions regarding it;
I want to change certain specifications for the jumbotron (and other classes) in my own .css file. I have a file called "mycss.css" and have added the following code into it
.jumbotron {
background-image: url();
padding: 30px;
margin-bottom: 30px;
font-size: 21px;
font-weight: 200;
line-height: 2.1428571435;
color: inherit;
background-color: #eeeeee;
}
In my index.htm I have declared my .css as follows (after the bootstrap.min.css declaration);
<link href="css/my.css" rel="stylesheet" media="screen">
However, these changes are not being reflected on my site. Is there anything else I need to change?