Hi, Unregistered. | Today's Posts

T-Shirt Forums
User Name
Password

Need to Register?

Forgot Your Password?

Site Navigation


More Info

+   T-Shirt Forums > T-Shirt Selling > Ecommerce Site Design
Discuss website design for ecommerce sites, useability, navigation and other development considerations

Shopify theme editing ?



 
LinkBack Thread Tools Search this Thread
Old January 30th, 2007 Jan 30, 2007 8:59:15 PM -   #1 (permalink)
T-Shirt Lover
T-Shirt Fan

mmcabella's Avatar
 
You can call me: Bella
Member Since: Sep 2006
Location: Washington DC
Posts: 58
Thanks: 0
Thanked 0 Times in 0 Posts


Default Shopify theme editing ?

Not sure if anyone can help, but I've decided to use Shopify for a temporary website and I'm trying to set up my store. I'm attempting to edit colors on one of the themes (Spectrum) and the directions state that in order to change colors I need to "uncomment" one of the versions . Does anyone know how to "uncomment" something in Shopify? Another theme (Tellus) states that in order to select a color I have to delete a specific "*/" next to the color I want. I've tried something similar to that but it doesn't work. Any help would be greatly appreciated.
__________________
Bella
Pregnant chicks need cool shirts too
 
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati
Old January 31st, 2007 Jan 31, 2007 11:01:28 AM -   #2 (permalink)
Administrator
Certified T-Shirt Junkie

Rodney's Avatar
 
You can call me: Rodney
Member Since: Nov 2004
Location: Sacramento, CA
Posts: 19,284
Thanks: 447
Thanked 899 Times in 614 Posts
Blog Entries: 4


Default Re: Shopify theme editing ?

Quote:
I'm attempting to edit colors on one of the themes (Spectrum) and the directions state that in order to change colors I need to "uncomment" one of the versions . Does anyone know how to "uncomment" something in Shopify?
Can you show us what part it is asking you to edit. We can probably help you if we see an example.
__________________
Rodney Blackwell - T-Shirt Links Directory - T-Shirt Countdown

 
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati
Old January 31st, 2007 Jan 31, 2007 8:08:58 PM -   #3 (permalink)
T-Shirt Lover
T-Shirt Fan
Thread Starter

mmcabella's Avatar
 
You can call me: Bella
Member Since: Sep 2006
Location: Washington DC
Posts: 58
Thanks: 0
Thanked 0 Times in 0 Posts


Default Re: Shopify theme editing ?

Quote:
Originally Posted by Rodney
Can you show us what part it is asking you to edit. We can probably help you if we see an example.
Here are the instructions and the code for the color selection I want to use. I'm not sure where I'm supposed to make the changes in order to select the color.

/***************** S P E C T R U M C O L O R S ******************************
/ You can quickly change the colors of your theme by uncommenting one of these
/ versions. You should NOT comment out the code above this line.
*/
/*
*=SUNBIRD
*/
/*#header { background: #900; }
#header h1 {text-shadow: none;}
#subtitle { color: #f66;}
#search, #footer { background: #c30; color: #fff;}
#sbar { background: #cc9;}
#product h2 { color: #630; }
#sbar .vlink-list a {
color: #333;
border-bottom: 1px solid #fff;
}
#sbar .vlink-list a:hover {
color: #000;
background: #ffc;
border-bottom: 1px solid #966;
}
.buttons li a:hover {
color: #930;
background: #f96;
border: 1px solid #c30;
}*/

Thanks for taking a look at this.
__________________
Bella
Pregnant chicks need cool shirts too
 
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati
Old January 31st, 2007 Jan 31, 2007 8:33:53 PM -   #4 (permalink)
TSF Veteran
Certified T-Shirt Junkie

Jasonda's Avatar
 
You can call me: Jasonda
Member Since: Aug 2006
Location: Vancouver, BC
Posts: 3,222
Thanks: 27
Thanked 114 Times in 97 Posts


Default Re: Shopify theme editing ?

Ok, I am by no means a CSS expert, but I think "commenting" refers to these symbols: /* */

I'm guessing that "uncommenting" would mean removing those symbols.

So try this version with the comments removed. (First save a copy of the original CSS in case this one doesn't work):

/***************** S P E C T R U M C O L O R S ******************************
/ You can quickly change the colors of your theme by uncommenting one of these
/ versions. You should NOT comment out the code above this line.
*/
/*
*=SUNBIRD
*/
#header { background: #900; }
#header h1 {text-shadow: none;}
#subtitle { color: #f66;}
#search, #footer { background: #c30; color: #fff;}
#sbar { background: #cc9;}
#product h2 { color: #630; }
#sbar .vlink-list a {
color: #333;
border-bottom: 1px solid #fff;
}
#sbar .vlink-list a:hover {
color: #000;
background: #ffc;
border-bottom: 1px solid #966;
}
.buttons li a:hover {
color: #930;
background: #f96;
border: 1px solid #c30;
}
 
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati
Old January 31st, 2007 Jan 31, 2007 9:49:35 PM -   #5 (permalink)
Moderator
Certified T-Shirt Junkie

Solmu's Avatar
 
You can call me: Lewis
Member Since: Aug 2005
Location: Melbourne, Australia
Posts: 8,267
Thanks: 4
Thanked 187 Times in 160 Posts


Default Re: Shopify theme editing ?

Quote:
Originally Posted by Jasonda
Ok, I am by no means a CSS expert, but I think "commenting" refers to these symbols: /* */
It does. Commenting allows text to be included in the code that doesn't execute (it's only seen if you look at the source). It can be used to explain what the code is doing to help anyone who is trying to maintain or alter it further down the track. It's also often used with these kind of things to include extra code that can be turned on and off, so the user doesn't have to know how to code it from scratch.

Quote:
Originally Posted by Jasonda
I'm guessing that "uncommenting" would mean removing those symbols.
It does.
__________________
Ceci n'est pas une autographe.
 
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati
Old February 1st, 2007 Feb 1, 2007 9:22:40 AM -   #6 (permalink)
Administrator
Certified T-Shirt Junkie

Rodney's Avatar
 
You can call me: Rodney
Member Since: Nov 2004
Location: Sacramento, CA
Posts: 19,284
Thanks: 447
Thanked 899 Times in 614 Posts
Blog Entries: 4


Default Re: Shopify theme editing ?

Yep, Jasonda's version above should work. The parts in big bold below are the "comments" that needed to be removed.

Quote:

/*#header { background: #900; }
#header h1 {text-shadow: none;}
#subtitle { color: #f66;}
#search, #footer { background: #c30; color: #fff;}
#sbar { background: #cc9;}
#product h2 { color: #630; }
#sbar .vlink-list a {
color: #333;
border-bottom: 1px solid #fff;
}
#sbar .vlink-list a:hover {
color: #000;
background: #ffc;
border-bottom: 1px solid #966;
}
.buttons li a:hover {
color: #930;
background: #f96;
border: 1px solid #c30;
}*/
__________________
Rodney Blackwell - T-Shirt Links Directory - T-Shirt Countdown

 
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati

Tags:



This is a discussion about Shopify theme editing ? that was posted in the Ecommerce Site Design section of the forums.

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off
Forum Navigation

Similar Threads
Thread Thread Starter Forum Replies Last Post
Anyone here use SHOPIFY? guest5779 Ecommerce Site Design 11 May 2nd, 2008 08:46 AM
Israel Theme BenShalom Graphics and Design Help 1 October 24th, 2006 05:17 PM
Just one Theme per store?? Quickne$$ T-Shirt Marketing 9 October 3rd, 2006 01:45 PM
Just one theme per t-shirt site? Quickne$$ General T-Shirt Selling Discussion 8 May 4th, 2006 07:37 PM
Paypal help - editing existing product info identityburn Ecommerce Site Design 7 March 31st, 2006 09:25 AM


All times are GMT -8. The time now is 02:05 AM.


Copyright 2004-2008 T-ShirtForums.com. All rights reserved.