<div id="nofries">
<h1 class="restaurant mt-5 ms-3">CRAZY GREEKS</h1>
<h3 class="ms-5">GREEK FOOD, SUBS & PIZZA</h3>
</div>
I'm having trouble with my div ID "nofries" not being recognized by the CSS. I've tried using it as a class, specifying it as "div.nofries", but nothing seems to work. Any suggestions?
@media only screen and (max-width: 900px) {
div#nofries {
display: contents !important;
text-shadow: -3px 2px 2px rgba(0, 0, 0, 0.63);
margin: auto;
}
}
Could my use of Bootstrap be causing interference with the styling? I find Bootstrap's media queries confusing, so I prefer this method. Any insights on this?