@media in bluehost is being commented out [closed]

Media queries are not used by default. They are only used if the screen’s size matches one of the conditions. For example:

@media only screen and (max-width: 1000px){ }

Will only trigger if your screen size is below 1000px wide. If you are visiting the page and your screen is larger than this, the browser will show this query as grayed out, since it’s not being used.

But if for any reason your responsive CSS file is not being loaded, I suggest you add it to the bottom of your style.css file. This way it will be loaded for sure.