I`m sending you full code that you have to change.
Find this lines:
.item-box .product-rating-box {
display: none;
}
;
.item-box .product-rating-box {
display: inline-block;
}
.product-review-box {
display: inline-block;
margin: 0 0 5px;
}
.product-review-box .rating {
width: 85px;
height: 16px;
background: url(../img/icon-rating-empty.png) repeat-x;
}
.product-review-box .rating div {
height: 16px;
background: url(../img/icon-rating-full.png) repeat-x;
}
;
.product-rating-box {
display: inline-block;
margin: 0 0 5px;
}
.product-rating-box .rating {
width: 85px;
height: 16px;
background: url(../img/icon-rating-empty.png) repeat-x;
}
.product-rating-box .rating div {
height: 16px;
background: url(../img/icon-rating-full.png) repeat-x;
}
Hello there!
By design there are no rating stars in the item boxes.
But if you want to customize your theme you need to change some styles in document "styles.css".
What you need to do is to find following styles into "styles.css" document
.product-review-box
and change it with:
.product-rating-box;
This might be on line 2541 to 2550.
And finally go to line 1970 or find
.item-box .product-rating-boxand change the property from: display:none; to display:inline-block;;
Hi Rob!
I have made test but it does not act like that to me.
This must be browser cache.
Hello there UserThomas!
There is no way to reduce all the spaces and sizes in the theme, at least there is no easier way.
The only way is by extraordinary effort // rewriting all the styles .
Hello there!
This is my opinion:
First of all by design there must be only 3 columns. If you need four then it is not easy to be done properly. First you have to change the html, and than the styles in css.
This is quite of a customization.
Here is my advice how you can do it.
what you need to do is to find \Alfresco\Views\Common\Footer.cshtml
In the <div class="footer-lower"> add another div with class for example "security-seal",
right after the <div class="social-sharing">
And after that you need to change the css in Alfresco\Content\css\styles.css
Find the code:
.subscribe-to-newsletter {
margin: auto;
position: relative;
width: 240px;
}
.subscribe-to-newsletter {
width: 240px;
float:left;
}
div.security-seal{
float: right;
max-width: 170px;
}
.footer-lower>div{<-- like that you give a little space between the divs
margin:0 2px;
}
.attributes dd {
float: left;
max-width: 280px;
margin-bottom: 12px;
}
.color-squares li {
float: left;
margin: 0 10px 0 0;
}
.attributes dd {
float: left;
max-width: 260px;
margin-bottom: 12px;
}
.color-squares li {
float: left;
margin: 0 7px 0 0;
}