Jump to content

Orderbox Div Width & Removal of "-" from Product List Names


int

Recommended Posts

Looking to do 2 things in the 'orderbox' div class:

1- Make the "Product List" table width (in the shopping cart) shrink from ~740px to 500px.

2- Remove what seems to be a hard coded " - " after each product name, which shows up in the shopping cart/ordering process.

 

Has anyone been successful in doing either of these? I've been using a browser to inspect elements and find the right CSS fields for a lot of the changes I wanted, but these don't seem to be anywhere!

 

Any help would be greatly appreciated!

Link to comment
Share on other sites

Looking to do 2 things in the 'orderbox' div class:

1- Make the "Product List" table width (in the shopping cart) shrink from ~740px to 500px.

2- Remove what seems to be a hard coded " - " after each product name, which shows up in the shopping cart/ordering process.

 

Has anyone been successful in doing either of these? I've been using a browser to inspect elements and find the right CSS fields for a lot of the changes I wanted, but these don't seem to be anywhere!

 

Any help would be greatly appreciated!

 

 

Anyone? In case it isn't clear what I'm talking about, I am attaching a pic with both issues pointed out with red arrows.

screen.jpg

Link to comment
Share on other sites

Stock answer would be "edit your.tpl and .css files"

 

That actually helped for one of them, thank you!

For anyone else wondering, to remove the "-", I had to edit products.tpl in the templates/verticalsteps folder and change this:

 

<strong>{$product.name}</strong> {if $product.qty!=""}<em>({$product.qty} {$LANG.orderavailable})</em>{/if} - {$product.description}<br /><br />

 

to this:

 

<strong>{$product.name}</strong> {if $product.qty!=""}<em>({$product.qty} {$LANG.orderavailable})</em>{/if}{$product.description}<br /><br />

 

Thanks Othellotech :)

 

Now to figure out the div width question!

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated