Jump to content

[SOLVED] In shoping cart is text out page


Recommended Posts

it's because of long product name without spaces

DX02NB2.png

 

browser can't wrap desc to new line due to the lack of spaces in name.

 

 

you have to decrease width of whole table row with description, but all name will be cutted ;)

 

use this somewhere in your stylesheet

.cart_description {
    max-width:100px!important;
    overflow:hidden;
}

effect

Z4vaptT.png

Link to comment
Share on other sites

  On 3/21/2014 at 9:12 AM, vekia said:

it's because of long product name without spaces

DX02NB2.png

 

browser can't wrap desc to new line due to the lack of spaces in name.

 

 

you have to decrease width of whole table row with description, but all name will be cutted ;)

 

use this somewhere in your stylesheet

.cart_description {
    max-width:100px!important;
    overflow:hidden;
}

effect

Z4vaptT.png

 

 

Thank you now it is correct. 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...