Zen Cart Logo
Forums / Basic Configuration / Shopping Cart - Sidebox

Shopping Cart - Sidebox

Locked

Views: 1,097

Results 1 to 8 of 8
This thread is locked. New replies are disabled.
26 Feb 2010, 6:22 AM
#1
mooondawg avatar

mooondawg

New Zenner

Join Date:
Jul 2008
Location:
Kansas City
Posts:
37
Plugin Contributions:
0

Shopping Cart - Sidebox

When logged in, the Shopping Cart Sidebox has .... at the end of the text. The ... are driving my text into my icon. How do I get rid of them. I have looked in the sideboxes and cannot locate the text for this one. I have also looked in the developers tools and cannot locate it.

Any help appreciated.

26 Feb 2010, 6:37 AM
#2
mooondawg avatar

mooondawg

New Zenner

Join Date:
Jul 2008
Location:
Kansas City
Posts:
37
Plugin Contributions:
0

Re: Shopping Cart - Sidebox

I found it in "view page source" but do not know where this is located to edit it.

<a href="http://www.soyscentual.net/index.php?main_page=shopping_cart">Shopping Cart...</a>

26 Feb 2010, 4:54 PM
#3
mooondawg avatar

mooondawg

New Zenner

Join Date:
Jul 2008
Location:
Kansas City
Posts:
37
Plugin Contributions:
0

Re: Shopping Cart - Sidebox

Maybe I should reword this and I could get some responses. How do I locate and change the linked text in the shopping cart sidebox. I have looked in includes where all of the sideboxes are. Checked each shopping cart sidebox and cannot locate the link or the text that says "Shopping Cart...". I have looked in the developers tools and searched for the content. Came up empty.

Please help, I am ready to go live but do not wish to have this looking awful on my pages. I do have the option to disable it but it is very convenient for customers so I am leaving this option as a last resort.

Thanks

26 Feb 2010, 7:03 PM
#4
stevesh avatar

stevesh

Black Belt

Join Date:
Feb 2005
Location:
Lansing, Michigan USA
Posts:
19,793
Plugin Contributions:
2

Re: Shopping Cart - Sidebox

We can't see it for ourselves since you're down for maintenance. Could you do something like:

#shoppingcartHeading {text-align:right;} ?

26 Feb 2010, 8:47 PM
#5
mooondawg avatar

mooondawg

New Zenner

Join Date:
Jul 2008
Location:
Kansas City
Posts:
37
Plugin Contributions:
0

Re: Shopping Cart - Sidebox

If I do that, the text drops down into the next line and creates a mess. Makes the single line in the sidebox about 20px. Image is above in my first post. What I am talking about is not the shopping cart itself. I am referring to the Shopping Cart Sidebox. You are unable to see it unless you create an account.

I went ahead and took it off maintenance. If you choose to create an account so you can see what I am referring to, I will delete it when I get back.

Thanks.

26 Feb 2010, 9:43 PM
#6
mooondawg avatar

mooondawg

New Zenner

Join Date:
Jul 2008
Location:
Kansas City
Posts:
37
Plugin Contributions:
0

Re: Shopping Cart - Sidebox

I figured out the text itself is coming from includes/languages/english.php. However the text itself does not have the "...". See below.

// shopping_cart box text in sideboxes/shopping_cart.php
define('BOX_HEADING_SHOPPING_CART', 'Shopping Cart');

It has to have something to do with the heading text being a link. The Reviews sidebox heading text is also a link and it has the "..."

27 Feb 2010, 12:00 PM
#7
stevesh avatar

stevesh

Black Belt

Join Date:
Feb 2005
Location:
Lansing, Michigan USA
Posts:
19,793
Plugin Contributions:
2

Re: Shopping Cart - Sidebox

I can't test this in Web Developer, but how about something like:

#shoppingcartHeading a {margin-left:XXpx;}

(#shoppingcartHeading is for the cart sidebox.)

27 Feb 2010, 2:42 PM
#8
mooondawg avatar

mooondawg

New Zenner

Join Date:
Jul 2008
Location:
Kansas City
Posts:
37
Plugin Contributions:
0

Re: Shopping Cart - Sidebox

That so worked!

#shoppingcartHeading a {margin-left:20px;} and it worked perfectly! Thank You!