How to unminimize a min.css file? - html

I tried to use an online unminifier (http://mrcoles.com/blog/css-unminify/). I replaced the minimized with the unminized text. Afterwards I called the URL, the whole website was not layouted.
But I really need to configure some css-classes, just integrating a new css-lib would not help.
What did I wrong? Maybe the unminifier does not work and you can recommend me a better one?

I've always used this one and it's always worked for me :)

The website updated 6 years ago (also github page). So maybe there is problem about it.
I recommend you to use Atom editor. Use this package with Atom. It always works for me.

Related

Confused HTML beginner here

so I've recently started learning web development and I read and write html according to a tutorial that uses html 4, and just practice it on notepad++ and test them on my browser.
Now there's a problem that's been bugging, the web page doesn't change at all even if I comment out the code or change a few things in it.
I messed around with the height and width of an image and it didn't change, I tried creating a folder outside the notepad++ folder and put everything there and nothing changed, I created a completely new file(added in notepad++) and folder and it was the same. I'm still in the middle of the tutorial and this problem has just been bothering me, someone please help
I think you should try clearing browser cache or try using other IDEs like vscode or if you use android then trebedit or Dcoder
Try refreshing your page, or use an IDE like Visual Studio Code and the live Server plugin. This should help you as a beginner because both of these tools are really easy to use. Maybe it isn't changing because you had never saved your file.

Can I communicate with another website with <script>?

I am working on a project where it communicates with a sites servers with a couple lines of HTML code, so I need a piece of code that sends a query or just does something with the separate website .
What have I tried? Well I have tried looking online but I didn't really find anything. And the code? I didn't try anything, I have no idea how to do it.
My code:
I said I didn't know how to do it, so there is no code.
Thanks for answering if you answered!
(If there are other programming languages involved, I don't mind)
I think you need to API from website which you want to use in your project.

Live Server Renders Page Different Than Local Server

I have a problem that has me stumped and I'm hoping someone here can help me solve it. I designed a new site using Sublime and am having problems with one file(page) that looks great on Sublime, but is screwed up when I put it on the live server.
From Sublime it renders perfectly on all web browsers, so I don't think has anything to do with it. I suspect that maybe it has something to do with the Cascading part of CSS. But, I don't know how to determine that.
Anyhow, here's the the code involved: http://portabledogpotty.com/dog-potties.html
The first section is the HTML and the second section is the CSS file. Any help would be very greatly appreciated!
Sam
Seems you have a table only for the header **SAVE EXTRA MONEY WITH OUR VALUE PACKS! **, try to put it as a th in the table for packs.
I see that just using the chrome element inspector.
Grettings

How to make a local website update automatically during development

I was just wondering because it would make life easier for me.
Is it possible to make a website automatically update whilst programming it.
So for example if i was coding with Notepad++ it would automatically update and display it in chrome.
Yes it is possible to do that using http://livereload.com/. If you are working with preprocessor, then Prepros or Codekit will be your choice. Both of them support live reload.
There is an addon: http://fossil.2of4.net/npp_preview/home for notepad++. There are numerous other solutions but you have to find a program that fits your needs. An easy google search on 'html live preview' will list a lot.

How to check if mootools.js is actually being used within a web site?

I inherited a web site project that includes mootools.js (about 40k) in most of the scripts. However, I have not seen, intuitively, where it is being used and given the nature of this porject, ahem, I'm thinking it might not be being used at all!
I'm "under the gun" to ship this tonight (yup, it's a pre-Thanksgiving release). I have not used mootools.js so I'm not sure what to grep for or if there's a sure tell way to determine this. I don't want to have to JSLint it (or do I LOL). Any suggestions would be appreciated. Thanks.
Mootools grafts itself onto some of the native js stuff, so it might be hard to do just by code inspection unless you are very familiar with what MooTools gives you.
Remove it, run your automated tests.
Cause you have those, right?...
Remove it and see if anyone complains.
(You could try it on a test machine first, if you're not feeling brave.)
You can check your source code on some MooTools methods, for example, addEvent().
If it is used so here is the Mootols :)
Just check from the home page of http://mootools.net/
I also was interested on one site why they use jquery and mootools. So, I found addEvent() method. It is Mootols method.
You must have a dev version of the site. Just pull it out and go over pages see if stuff breaks. Mostly you will get unknown function type stuff, if there is any dependencies. Firebug is your friend.
1, Open firebug
2, Click the DOM tab
3, Check if the Mootools object exists (It will say the current version of mootools next to it).
Hope this helps
:)