Posted - 09/28/2025 : 20:03:09
Hi, a few things... Never alter the ect css files - No need to. In your pages, each css file is called in the order you have them in your code. Your style.css file should be listed last and any changes you want to make to styling, you copy from the ect css file and paste it into your style.css file and make the changes. Then, when you update, your changes remain intact.
If you want to see the changes you have made to the ect css files, just use a file compare program. I use the free winmerge program and it's super easy to use.
Just open the original css file from the update (you can download old updaters if you don't have an original copy (the zip file). and your current version you use on the site and you will see all the changes you made, and copy them over to the style.css file.
I do have back end mods on my site, but I document them in a word doc I maintain, and I comment all of my code so it's easy to spot my changes. When I update, I open the new vsadmin folder and my working vsadmin folders in winmerge and it gives you a list of any files that are different. You open them one by one and copy over the new changes, leaving my "commented" changes so they continue to work.
If you take a bit of time to get this in order, updates will be easy in the future, even if you have make changes to the ect code.
Comment code this way HTML comment with this <!-- at the beginning and the following after --> Comment .php and javascript with two forward slashes // preceding the comment Comment .asp code with an apostrophe (single quote) before the line ' CSS comments begin with /* and end with */
Thanks, David

|