Jump to content

[solved] Problem with the product name in list view


Recommended Posts

Hello,

 

Does anyone have any idea how to make the product name display entirely in the list view ?

 

I have tried to change the truncate: value from everywhere but only when i change it to a lower value it responds.

 

On the image below i describe what i mean.

http://img191.images...neproblema1.jpg

 

And you can also visit my website to see it:

http://genti-accesorii-online.ro/

 

Can anyone help me please ?

 

Thank you.

Link to comment
Share on other sites

Hello,

 

Does anyone have any idea how to make the product name display entirely in the list view ?

 

I have tried to change the truncate: value from everywhere but only when i change it to a lower value it responds.

 

On the image below i describe what i mean.

http://img191.images...neproblema1.jpg

 

And you can also visit my website to see it:

http://genti-accesorii-online.ro/

 

Can anyone help me please ?

 

Thank you.

 

hello

 

i chcecked your website. the problem is with css.

 

the answer is there:

white-space: nowrap;

 

located in: /themes/default/css/cleantheme.css line ~81.

 

you can find there:

 

#featured-products_block_center .s_title_block {
width: 126px;
overflow: hidden;
text-overflow: ellipsis;
-ms-text-overflow: ellipsis;
-o-text-overflow: ellipsis;
white-space: nowrap;
}

 

remove the white-space: nowrap; param and everything will work as you expect

 

let me know, if so

Link to comment
Share on other sites

hello

thanks for the information

 

i checked it once again and you've got right.

 

there is another white-space: nowrap; in the code:

 

.two_col.grid #product_list li h3 {
color: #000000;
float: left;
font-size: 13px;
padding: 0 0 10px;
width: 88px;
overflow: hidden;
text-overflow: ellipsis;
-ms-text-overflow: ellipsis;
-o-text-overflow: ellipsis;
white-space: nowrap;
}

 

cleantheme.css line ~113

 

the same as before - remove the:

 

white-space: nowrap;

Link to comment
Share on other sites

  • 1 year later...

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...