 Groups: ProSeller
Joined: 2/4/2012 Posts: 828
|
thank you great help
|
|
 Groups: ProSeller
Joined: 3/11/2011 Posts: 299
|
@Killslammer,
You're welcome, i'm glad it worked out for you.
|
|
 Groups: ProSeller
Joined: 2/4/2012 Posts: 828
|
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
|
|
 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;}
|
|
 Groups: ProSeller
Joined: 2/4/2012 Posts: 828
|
again you are a great help thank you
|
|
 Groups: ProSeller
Joined: 3/11/2011 Posts: 299
|
@Killslammer,
You're welcome, glad to help.
|
|
 Groups: ProSeller
Joined: 2/4/2012 Posts: 828
|
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
|
|
 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.
|
|
 Groups: ProSeller
Joined: 2/4/2012 Posts: 828
|
ok thank you nice to know that
|
|
 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)
|
|
 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 ;)
|
|
 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!!!!
|
|
 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.
|
|
 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;}
|
|
 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>
|
|
 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.
|
|
 Groups: ProSeller
Joined: 3/11/2011 Posts: 299
|
@koobooki,
You're very welcome. You are correct, the product pages are non-customizable.
|
|
 Groups: ProSeller
Joined: 12/3/2010 Posts: 1,458
|
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.
|
|
 Groups: ProSeller
Joined: 3/11/2011 Posts: 299
|
@Steve Crompton,
You're welcome, i'm really glad to know that you found them useful.
|
|
 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.
|
|
|
Guest |