_ I've just started a bootstrap project - completely new to bootstrap until a few days ago.
I've a large H1 Piece of text (overly large for the aesthetic I'm going for). I've not yet fully worked out how to change the global h1 so it over rides the bootstrap so I'm used the following which works just as I wanted (heavy font-weight and change of colour):
#index h1 {
color:rgb(108, 170, 179);
font-size: 150px;
font-weight: 900;
}
And I'm using this in CSS to overwrite the font-family (which, again, works well):
* {
font-family: 'Montserrat', sans-serif;
}
However, the '@media only' isn't picking this up (as I'm not sure how to tell it to). The h1, h2 et are responsive (if I take out the #index h1 code). This H1 is sat in a 'jumbtron' box btw (again, just for aesthetics) but not sure if that's relevant to this issue.
This is for a very simple starter project so at this stage I don't want to over complicate (this will literally be a simple form with a couple of rows, columns and buttons - no JS added at this stage - for a course, so time limitations on anything more grand).
I've attached a screenshot of the 'header style' (the jumbotron - akin to a header but works for me at the moment - next step is to get that tick logo to the right of the 'TASQ' H1 text.
Apologies if I've missed any info out folks
Many thanks.