Close

Profile: Peter.Zhekov

Avatar

User posts


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;
}

10 years ago

oresther wrote:
hi there,

i have the latest cloud zoom version everything works great but i have a problem with integrated css menu .

i download one the menus from menucool.com its a drop down menu , every time i am in a product page (when cloud zoom is working ) i am going to the menu and the drop down menu slide down when i position my mouse to choose category the cloud zoom start to work and menu menu sliding up (the menu is sliding on the product picture) any body have a solutions to that ?


Hi oresther,

please increase the z-index of your menu. If it does not work, try with very big number.  

Hope this helps!

Best regards!

Nop-Templates.com Support Team

Security Seal
10 years ago

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;
}


and change it like this

.subscribe-to-newsletter {
   width: 240px;
  float:left;

}


with the next lines you`ll fix the new div
div.security-seal{   
    float: right;
    max-width: 170px;
}



.footer-lower>div{
  margin:0 2px;
}
<-- like that you give a little space between the divs

So far is OK, but the there are a few css files for different resolutions that also need to be changed and it gets more complex.
You can try to make it, but it is more tricky indeed.

Hope this helps!

Best regards!

Nop-Templates.com Support Team

Bugs
10 years ago

MattyLB wrote:
Color square alignment seems to drop underneath the attribute title on full width .CSS styling. Displays properly on all other screen widths. Here's an example link so you can see first hand: https://iowish.com/any-st-pattys-design-completely-customized

Thanks


Hi MattyLB!

Thank you for reporting this! We will fix it but I see you have made some modifications to the styles i.e the color square boxes are bigger. So I will tell what to chnage as it is very simple:
Find the theme css file Alicante/Content/css/styles.css

.attributes dd {
float: left;
max-width: 280px;
margin-bottom: 12px;
}

and
.color-squares li {
float: left;
margin: 0 10px 0 0;
}




change like this(lines in bold):

.attributes dd {
float: left;
max-width: 260px;
margin-bottom: 12px;
}


.color-squares li {
float: left;
margin: 0 7px 0 0;
}

That is all you need to do!

Thanks