Sublime Forum

CSS not being registered on my browsers! :(

#1

Hi,

I’m having a big issue…
My computer is not registering the CSS that I write in Sublime. I tried in all my browsers (Chrome, FF, Safari) and it’s the same. All my HTML changes appear when I reload my pages but none on the CSS modifications are being “processed”.
I recently caught some malware and threw a whole bunch of files in trash to clean up my hard drive. I’m worried there is a plugin or an app necessary for text editor to function that I probably got rid of by mistake. I called Apple and they haven’t be able to find the issue.
Does anybody know what it could be?
Thanks in advance.

0 Likes

#2

Doesn’t sound like this is related to Sublime Text at all. You should verify the contents of the CSS file using “cat” command or some other editor. If it looks fine, I guess the problem is somewhere else.

You could use the Dev tools/Inspector of your browser and look which CSS file is actually being used when rendering the page. You can see the contents easily.

0 Likes

#3

Thanks for your reply.
Yes the problem is somewhere else but I don’t know how to target it. It looks the connection between my browsers and my text editor is not being made properly. I clearly deleted an extension or a plugin that processes CSS. I don’t know where to look…

0 Likes

#4

Are you sure you’re loading the CSS in your HTML? Maybe you made a mistake with your path: have a look in the console, an error will be logged if you pointed to an unexisting file

0 Likes

#5

I made a mistake in my path… indeed. Got frustrated and couldn’t see it.
Thank you both for getting back to me.
Happy coding!

0 Likes

#6

Just to clarify, there should be no special “connection” between the browser and Sublime Text. CSS file is just a text file which the browser reads if it is found based on the path defined in the HTML file. And you definitely can’t delete the CSS reading capability out of a modern browser :smiley:

But glad you resolved it! I suggest reading some basic HTML+CSS tutorials to get hang of it.

0 Likes

#7

Yes! I will definitely follow your advice. :wink: Thanks!

0 Likes