Jump to content

Create a border around EACH product in the product list


Zen

Recommended Posts

Hi.

I would like to create a border around each product in the product list.

I have an issue when i make the tittle of the product longer than 2 lines it leaves an empty space below the product as you can see in the image below.

I think that if i could place a border around each product it would solve the problem but i don't know how to do that.

Thanks in advance!.

 

Screenshot_1.png

Link to comment
Share on other sites

 

9 hours ago, Rho_Bur said:

try first by adding this:


white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis

to the li container declaration in product-list.css

Thanks for the reply, but this doesn't help me because i need the product name to be fully vissible.Is there some other way to fix this?

Edited by Zen (see edit history)
Link to comment
Share on other sites

I played around with the code and found a solution.

I created a block around each product and gave it the same color as the background so that people can't see it.

    position:  relative;
    height: 350px;
    display: block;
    border: 10px solid #ff000000;

 

Edited by Zen (see edit history)
Link to comment
Share on other sites

  • 2 months later...

Hi Zen.

I have the same problem with my shop. Can you please share more details so i have a chance to finde the lines in the css that i need to edit.
It would be nice if you could share the line numbers.

 

Link to comment
Share on other sites

  • 6 months later...

I dont know if anybody is still interested in this but here it is.

You have to add the following lines in the product.css . (You can add them anywhere. I usually add all my code at the very bottom of the file so that it's all easy to find.)

.lablistproducts > li    
    position:  relative;
    height: 350px;    /*this is gives all the products the same height. so now they should line-up*/
    display: block;

 

 

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