Design + Coding > Simple way to override all default SquareSpace icons with our own

Is there a simple way to override all the default SquareSpace icons/images with an identically named set of image files we provide? (other than to manually edit all the CSS files referenced by our sites - yikes!).

I thought there might have been a specifically named File folder that SquareSpace might reference for media file overrides?

On this same topic, is there a link in the documentation that lists the names and sizes of all the default icons/images that a standard SquareSpace site uses by default? We would like to provide this information to our graphics artist vs. having someone try to reverse engineer this information by hand.

Any suggestions?

Thanks!
Malcolm

07.13.2009 | Unregistered CommenterMalcolm

Hi Malcolm,

Could you maybe be a little more specific? Which icons and images are you referring to?

07.13.2009 | Unregistered CommenterStephen Bates

Hi Stephen,

> Which icons and images are you referring to?

The SquareSpace stylized gray icons that show up underneath blog postings, comments, tracked changes items, etc.

BTW: These graphics look great, but we have a specific look we're trying to achieve so we would like to use our own graphics.

Thank you,
Malcolm

07.13.2009 | Unregistered CommenterMalcolm

Malcolm,

Pretty easy:

Upload your icons to your storage area, and then change the below icon URLs in the CSS code with yours. Paste the code into your Custom CSS area.

.date-icon { background: transparent url(/universal/images/core-resources/icons/dark/date.png) top left no-repeat; }

.permalink-icon { background: transparent url(/universal/images/core-resources/icons/dark/permalink.png) top left no-repeat; }

.comment-icon { background: transparent url(/universal/images/core-resources/icons/dark/comment.png) top left no-repeat; }

.user-registered-icon { background: transparent url(/universal/images/core-resources/icons/dark/user-registered.png) top left no-repeat; }

.reference-icon { background: transparent url(/universal/images/core-resources/icons/dark/reference.png) top left no-repeat; }

.print-icon { background: transparent url(/universal/images/core-resources/icons/dark/print.png) top left no-repeat; }

.email-icon { background: transparent url(/universal/images/core-resources/icons/dark/email.png) top left no-repeat; }

.share-icon { background: transparent url(/universal/images/core-resources/icons/dark/share.png) top left no-repeat; }

.category-icon { background: transparent url(/universal/images/core-resources/icons/dark/category.png) top left no-repeat; }

That should do it...

Regards,

Michael Zampino
SS Site - mzampino.com

07.14.2009 | Registered CommenterMichael Zampino

Great info and really appreciated!

Thank you Michael!

Regards,
Malcolm

07.14.2009 | Unregistered CommenterMalcolm

I'm trying to do this too, but I know nothing about CSS or anything. Can you please give me detailed instructions? Like where exactly do I insert the code? In style editing mode? In website settings?..and...do I insert the file name after every .png listed in the above code? As you can see, I know nothing about these things :) I can't figure out how to change the cube out to my own icon..

Let me know and thanks!

Joseph

08.9.2009 | Unregistered CommenterJoseph

Joseph : To insert the code you must be in Styele Editing mode - then chose Custom CSS. In Custom CSS you paste the code in. As an example; if you just want to change the icon for date then paste in this bit :

.date-icon { background: transparent url(/universal/images/core-resources/icons/dark/date.png) top left no-repeat; }


To use one of your own icons upload it to the File Storage on your account. To do this click on Website Management in the upper left corner, then click on File Storage under the Data & Media field. Once in you click the button Upload File and the choose the file from your PC/Mac (in this case the Date icon)
When it´s uploaded rightclick the file and copy the URL.

Now let´s go back to the Custom CSS in Style Editing mode.
What you have to change is this part : /universalimages/core-resources/icons/dark/date.png. - instead paste the URL to your own icon. Then click Save CSS Changes and you should be ok.

= )

08.17.2009 | Unregistered CommenterGeir Werner

Joseph, Sorry I missed your question.

Geir, Great instructions... Thank you...

Regards,

Michael Zampino

08.17.2009 | Registered CommenterMichael Zampino

Just tried the code as provided at the start of this thread. Worked a treat but I wonder how I can get the actual menu item to center align vertically in the new menu bar? I'm try to learn CSS slowly. I feel wholly inadequate since starting to play with Sqaurespace having only use CSS before to control the look of my text etc in websites.

08.21.2009 | Unregistered Commenterstrugglingcss

strugglingcss,

From your question and without seeing your site, I'm not sure I understand what you are asking.

Have you taken a look at the Squarespace manual? There are some great instructions and video tutorials to aid you.

Squarespace Help Manual & FAQ

Hope this helps!

Regards,

Michael Zampino
SS Site: mzampino.com

08.21.2009 | Registered CommenterMichael Zampino

I am trying to replace the standard SS icons with my own. Specifically the icon for adding a audio file to a journal entry. I would like to insert a play button instead of the standard file icon. I read the posts above and when viewing my custom css i only see a small portion of my css. When i click the view style sheet i can view all the css but not edit it. Any information on how to access all of the css so it is editable would be greatly appreciated

cornerstoneaustin.org/messages

above is a link to the page I am referring to.

09.25.2009 | Unregistered CommenterAaron Broberg

Hi Aaron,

You don't actually need to see all the CSS to accomplish what you want. The CSS you put here will effectively override the CSS elsewhere in the squarespace system. Just paste the entire css code Michael Zampino gave you (or pick and choose the icons you're going to replace) and change the URL cited to point to the custom icon file in your storage area.

09.25.2009 | Unregistered CommenterTyler West

Ahh. Thanks Tyler I will try it out.

09.25.2009 | Registered CommenterAaron Broberg

It be a great option to hide them entirely.

11.3.2009 | Registered CommenterScott Anguish

Hi Scott,

You can hide them by adding this one line to your Custom CSS area:

.inline-icon {display:none;}

Simple as that...

Hope this helps!

Regards,

Michael

11.3.2009 | Registered CommenterMichael Zampino