Hi UserThomas!
Thank you for your request!
We`ll fix the problem for the future, but more easier for you is to open the administration panel then configuration then plugins and to find the allure plugin. Click configure and in "Custom Head Styles" write the following code:
.product-share-button {
display: inline-block;
}
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;
}