space top , space bottom of contents in home page are far too.

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
8 years ago
I want to pull up space of block content in homepage, it is space from "Categories homepage" to "Featured products" for example. i can not find in style.css I'm using defaulthem.

Can you help me?

thank you.

below is sreen i uploaded:

8 years ago
tuanlq wrote:
I want to pull up space of block content in homepage, it is space from "Categories homepage" to "Featured products" for example

s like? I can not find in the css file. I'm using defaulthem

Can you help me?

thanks you.

<image src="http://lqtuan-001-site1.1tempurl.com/space_block.jpg"></image>


do not duplicate posts
8 years ago
Use css:
now you can find
.home-page .product-grid .item-box,
.product-details-page .product-grid .item-box,
.shopping-cart-page .product-grid .item-box {
  width: 24%;
  margin: 0 0.5% 50px;
}



Just edit it if you need.
8 years ago
Thank you very much. I will customize my css like guide of you.

best regard!
8 years ago
I've found that code of you in css files, but I still can not modify for spaces shorter. Can you guide more detail?

Thank you for your help.
8 years ago
AlexGT wrote:
Use css:
now you can find
.home-page .product-grid .item-box,
.product-details-page .product-grid .item-box,
.shopping-cart-page .product-grid .item-box {
  width: 24%;
  margin: 0 0.5% 50px;
}



I've found that code of you in css files, but I still can not modify for spaces shorter. Can you guide more detail?

Thank you for your help.
8 years ago
In my opinion you should try to change the last margin value.

For example:
.home-page .product-grid .item-box,
.product-details-page .product-grid .item-box,
.shopping-cart-page .product-grid .item-box {
  width: 24%;
  margin: 0 0.5% 0;
}

Please tell me if this helped :)

Best regards,
Patryk
8 years ago
I have changed code as below:

.home-page .product-grid .item-box,
.product-details-page .product-grid .item-box,
.shopping-cart-page .product-grid .item-box {
  width: 24%;
  margin: 0 0.5% 0;

  margin-top:0px;
  margin-bottom:0px;

}

but still not change in home page. I think the problem is somewhere!

thank you for your help
8 years ago
Maybe there's another style overriding that one?  Slap an !important at the end to be sure.

Also, you're going to want to adjust the margins on .news-list-homepage as well.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.