vote up 8 vote down star
4

FireBug is the most convenient tool I've found for editing CSS - so why isn't there a simple "Save" option?

I am always finding myself making tweaks in FireBug, then going back to my original .css file and replicating the tweaks.

Has anyone come up with a better solution?

EDIT: I'm aware the code is stored on a server (in most cases not my own), but I use it when building my own websites.

Firebug's just using the .css file FireFox downloaded from the server, it knows precisely what lines in which files its editing, I can't see why there's not an "Export" or "Save" option which allows you to store the new .css file. (Which I could then replace the remote one with). I have tried looking in temporary locations, and choosing file->save and experimenting with the output options on FireFox, but I still haven't found a way.

Here's hoping someone has a nice solution...

EDIT 2: The Official Group has a lot of questions, but no answers.

flag

Here's a post I made to the group a little while back: groups.google.com/group/firebug/… – NickFitz Nov 10 at 18:35

13 Answers

vote up 1 vote down

Since Firebug is not working on your server but taking the CSS from the site and storing it locally and showing you the site with those local changes.

link|flag
vote up -2 vote down

Actually Firebug is a debug and analyze-Tool: not an editor and obviously not considered to be one. The other reason was already mentioned: how to you want to change CSS, stored on a server when debugging a webpage?

link|flag
Not sure why you've been downvoted, but +1 from me: one of the major reasons people keep asking for this almost-impossible feature is that they don't appreciate the difference between a debugger and an editor. – NickFitz Nov 10 at 18:38
vote up 6 vote down

I think the closest you're going to get is by going into Edit mode in Firebug and copying and pasting the contents of the CSS file.

link|flag
vote up 3 vote down

Why don't you ask the authors? Or better yet, add the functionality yourself, its open source!

link|flag
1  
I'd find this feature handy sometimes too. I'm sure you're not alone, Dean! – Kev Oct 2 '08 at 14:51
At the very least, Firebug should be able to output the differences -- then you can work out where to put the CSS yourself. – Shermozle Oct 3 '08 at 3:38
++Shermozle. A diff would be exquisite. – dshaw Nov 16 '08 at 5:05
vote up 6 vote down

You could link firebug to eclipse with fireclipse and then save the file from eclipse

link|flag
1  
You can link FireBug to eclipse? Amazing! FireBug and Eclipse are the main tools I use in development. I will look into this. Thanks! – Dean Oct 2 '08 at 14:54
vote up 0 vote down

Here's a partial solution. After you make your changes, click on one of the links to the relevant file. This is the original file, so you'll have to refresh the file, which is under the options menu button in the upper right of the firebug pane. Now you have the modified css page, which you can copy & paste. Obviously, you'll have to do it for each css file.

Edit: looks like Mark Biek has a quicker version

link|flag
How about combining: use Mark Biek's solution to copy and past, but use Eduardo Molteni's solution and paste it in to developer tools and save. That's what I'm going to do for now. Would be nice if this was added to FB! – Rob Jul 17 at 0:25
vote up 1 vote down

Firebug works on the computed CSS (the one which you get by taking the CSS in the files and applying inheritance, etc. plus the changes made with JavaScript). This means that probably you couldn't use it directly to include in an HTML file, which is browser/version specific (unless you care only about Firefox). On the other hand, it keeps track of what is original and what is computed... I think it should not be very difficult to add some JS to Firebug to be able to export that CSS to a text file.

link|flag
This isn't entirely true. Firebug shows you all of the styles that apply to an element, including where they came from, and just strikes through them if they've been superseded by a more specific/later/important rule. It lets you change/add rules at any level. You also have the option to view just the computed styles, but the default view is to show all styles. – SpoonMeiser 2 days ago
vote up 6 vote down

The Web Developer add-on let's you save your edits. I'd like to combine the editing of Firebug with the Save feature of Web Developer.

alt text

Use the "Save" button to save the modified CSS to disk.

Recomendation: Use the "Stick" button to prevent losing your changes when you change the tab for doing other browsing. If it is possible, use only one tab to do the edit and other firefox window the related searches, webmail, etc.

link|flag
I do use the web developer plugin. But I just tried looking for the option and couldn't find it. How do I save the new stylesheets? – Dean Oct 4 '08 at 2:41
vote up 2 vote down

Use the CSS editor in the Firefox Web Developer toolbar:

http://chrispederick.com/work/web-developer/

It's got enough good stuff to use in conjunction with Firebug, and it lets you save your CSS out to a text file.

link|flag
vote up 1 vote down

You could write your own server scrip file that takes a filename parameter and a content parameter.

The server script would find the requested file and replace its contents with the new one.

Writing the javascript that tapps into firebug's info and retrieves the usefull data would be the tricky part.

For i'd personally rather ask the dev team at firebug to supply a function, it should't be too hard for them.

And finaly Ajax sending the filename/content pair to the php file you created.

link|flag
vote up 1 vote down

I know this doesn't answer your question, but surprisingly, Internet Explorer 8's Firebug clone "developer toolbar" (accessible via F12) offers the option to "save html". This function saves the current DOM to a local file, which means that if you edit the DOM somehow, e.g. by adding a style attribute somewhere, this will be saved too.

Not particularly useful if you're using Firebug to mess around with CSS like everyone does, but a step in the right direction.

link|flag
vote up 0 vote down

I was wondering why can't I bloody well select and copy the text in front of my eyes. Especially when others say you can just "select and copy". Turns out you can, you just have to start the drag outside of any text (i.e. in the gutter above or to the left of the text) as any mousedown -- whether it's a click or drag -- on any text immediately invokes the property editor. You can also click outside text to get a cursor (even if it's not always visible) which you can then move around with the arrow keys and select text that way.
The text copied to the clipboard is devoid of any indenting, unfortunately, but at least it saves you from manually transcribing the entire contents of the CSS file. Just have your diff programme ignore changes in whitespace when comparing against the original.

link|flag
vote up 0 vote down

Not sure why you've been downvoted, but +1 from me: one of the major reasons people keep asking for this almost-impossible feature is that they don't appreciate the difference between a debugger and an editor.

why not having both in one? is that so hard to make?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.