Store customization tricks by M 6 pages: 1 [2] 3 4 5 6
Killslammer
Posted: Tuesday, April 10, 2012 5:50:07 AM
 Zazzle Proseller
Groups: ProSeller

Joined: 2/4/2012
Posts: 825
thank you great help


M
Posted: Tuesday, April 10, 2012 6:01:37 AM
 Zazzle Proseller
Groups: ProSeller

Joined: 3/11/2011
Posts: 299
@Killslammer,

You're welcome, i'm glad it worked out for you.
Killslammer
Posted: Tuesday, April 10, 2012 1:30:51 PM
 Zazzle Proseller
Groups: ProSeller

Joined: 2/4/2012
Posts: 825
ok now I need to know one more thing if you have time how do I change the word Send Message
to email me
and I read what you have on the first page I want to get ride of my store name but not shure were to look for them codes thank you again for your time
M
Posted: Wednesday, April 11, 2012 3:34:47 AM
 Zazzle Proseller
Groups: ProSeller

Joined: 3/11/2011
Posts: 299
@Killslammer,

The Send Message text cannot be changed but there are some workarounds. You can add your own image link with the text on a png and place it on top of the existing link or as a background of that link and setting the existing link text to transparent. The image you use needs to be hosted online.

To remove the Store name at the top of the sidebar, go to:

Store > Appearance > Beta! Advanced > Style (CSS)

Then add the following code anywhere below the first line and above the last line:

.memberHandle h3{display:none!important;}

Killslammer
Posted: Wednesday, April 11, 2012 5:34:51 AM
 Zazzle Proseller
Groups: ProSeller

Joined: 2/4/2012
Posts: 825
again you are a great help thank you
M
Posted: Wednesday, April 11, 2012 5:57:50 AM
 Zazzle Proseller
Groups: ProSeller

Joined: 3/11/2011
Posts: 299
@Killslammer,

You're welcome, glad to help.
Killslammer
Posted: Wednesday, April 11, 2012 1:51:28 PM
 Zazzle Proseller
Groups: ProSeller

Joined: 2/4/2012
Posts: 825
ok ? for you I did what you told me and all worked fine then today I log in and all my categories are empty but I know there not is this from something I did OR is there a bug in zezzle right now and if it was from my change how can I reset the change to make my store work right again thank you I only did the 2 change in bata so not problem to reset i would think thank you
or maybe it on my end can you and anyone that reads this please go to my web page and test a few categories for me thank you


http://www.zazzle.com/killslammer
M
Posted: Wednesday, April 11, 2012 2:26:03 PM
 Zazzle Proseller
Groups: ProSeller

Joined: 3/11/2011
Posts: 299
@Killslammer,

It is a Zazzle glitch. Most stores have one or more categories empty. The products still show up in the marketplace. I'm sure Zazzle will get it fixed soon.

Killslammer
Posted: Thursday, April 12, 2012 2:03:17 AM
 Zazzle Proseller
Groups: ProSeller

Joined: 2/4/2012
Posts: 825
ok thank you nice to know that
M
Posted: Friday, April 13, 2012 12:00:46 PM
 Zazzle Proseller
Groups: ProSeller

Joined: 3/11/2011
Posts: 299
Hi all,

Here is another cool sidebar css trick that might come in handy. All codes go into the CSS section of your store.

To remove the underline hover from all the links in the sidebar:

.sidePod a{text-decoration:none!important;}

To add a different color hover to all the links in the sidebar:

.sidePod a:hover{color:#cccccc!important;}

(Use your own # hex color code to get the exact color you want)
Pip
Posted: Friday, April 20, 2012 9:41:51 PM
 Zazzle Proseller
Groups: ProSeller

Joined: 3/21/2011
Posts: 213
M wrote:
@Pip,

You're welcome, I'm glad to hear it helped.

To make all the text in the sidebar bold simply add the following code to the css section of your store:

.sidePod, .sidePod a{font-weight:bold!important;}



M - you've quickly become one of my all time favorite's on zazzle! Thanks... such a quick thing has made my store look so much better!!

You ROCK the Casbah... and then some ;)
Pip
Posted: Friday, April 20, 2012 9:45:28 PM
 Zazzle Proseller
Groups: ProSeller

Joined: 3/21/2011
Posts: 213
M wrote:
Hi all,

Here is another cool sidebar css trick that might come in handy. All codes go into the CSS section of your store.

To remove the underline hover from all the links in the sidebar:

.sidePod a{text-decoration:none!important;}

To add a different color hover to all the links in the sidebar:

.sidePod a:hover{color:#cccccc!important;}

(Use your own # hex color code to get the exact color you want)


M!!! M!!!! M!!! ... you are such a legend!!!!
M
Posted: Saturday, April 21, 2012 4:20:51 AM
 Zazzle Proseller
Groups: ProSeller

Joined: 3/11/2011
Posts: 299
@Pip,

Thank you, that means a lot. I am really glad you found the coding useful, you're store looks great. If there is ever anything i can do to help you out just let me know.
M
Posted: Saturday, April 21, 2012 6:51:03 AM
 Zazzle Proseller
Groups: ProSeller

Joined: 3/11/2011
Posts: 299
Hi all,

Here is another simple css trick that i get asked a lot to do. All code goes in the css section of your store.

To remove the numbers of products beside each category in the Department and Design Options section of the sidebar, use the following code:

.sidePod .navCount{display:none!important;}
M
Posted: Wednesday, April 25, 2012 2:16:59 AM
 Zazzle Proseller
Groups: ProSeller

Joined: 3/11/2011
Posts: 299
Hey Zazzlers,

Here is a simple html trick to change the default store banner link to any link you want. A great way to create a seamless transition from your Zazzle store to your website.

Make sure that you have Beta! Enable advanced options selected, all coding is entered in the following section:

Store > Appearance > Beta! Advanced (Tab) > Layout (XHTML)

Find the following code:

<div id="pageMantle">
<z: pagelink name="pageMantleLink" target="">
<span class="pageMantleSpacer"></span>
</z: pagelink>
</div>


To replace the default home link with your own and have it open in the same window, replace all of the code above with the following:

<div id="pageMantle">
<a id="pageMantleLink" href="Your Link Here">
<span class="pageMantleSpacer"></span>
</a>
</div>


To replace the default home link with your own and have it open in a new window, replace all of the code above with the following:

<div id="pageMantle">
<a id="pageMantleLink" href="Your Link Here" target="_blank">
<span class="pageMantleSpacer"></span>
</a>
</div>



koobooki
Posted: Friday, April 27, 2012 12:38:18 PM

Groups:

Joined: 5/21/2011
Posts: 8
@M,

Thanks again for the default store banner link code, it was a God-send...or I guess an M-send (^c ^ )

Anyway, I'm wondering if you'd also happen to have the code for changing the banner link on the product pages. Unless there's a glitch in my shop, it would appear Zazzle has it set up independently.
M
Posted: Friday, April 27, 2012 12:50:24 PM
 Zazzle Proseller
Groups: ProSeller

Joined: 3/11/2011
Posts: 299
@koobooki,

You're very welcome. You are correct, the product pages are non-customizable.
Steve Crompton
Posted: Friday, April 27, 2012 1:36:49 PM
 Zazzle Proseller
Groups: ProSeller

Joined: 12/3/2010
Posts: 1,437
I'm just dropping in to say thanks for this - I've only used the advanced customisation once previously, but I've now used a couple of your tweaks on a new store and will be keeping an eye on your thread.
thank you,

Steve.
M
Posted: Friday, April 27, 2012 4:54:22 PM
 Zazzle Proseller
Groups: ProSeller

Joined: 3/11/2011
Posts: 299
@Steve Crompton,

You're welcome, i'm really glad to know that you found them useful.
M
Posted: Saturday, April 28, 2012 6:43:52 AM
 Zazzle Proseller
Groups: ProSeller

Joined: 3/11/2011
Posts: 299
Hi all,

Here are some more css tricks for your sidebar. These codes will change the color of the sidebar titles individually or for all.
All code goes in the css section of your store. Just add your own hex color.

To change the color of the Search this store title:

.productSearchCell h3{color:#ffffff!important;}

To change the color of the Department, Design Options and Browse this store titles:

.categoryTitleShell h3{color:#ffffff!important;}

To change the color of the Store stats title:

.statsCell h3{color:#ffffff!important;}

To change all of the titles:

.productSearchCell h3,.categoryTitleShell h3,.statsCell h3{color:#ffffff!important;}

Hope it helps.


Users browsing this topic
Guest


Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.
Print this topic
RSS Feed
Normal
Threaded