Close

Profile: hristo

Avatar

User posts

7 years ago

Yes, I do now.

Here's how to fix that. Go to the "custom head styles" panel in your theme administration (Nop Templates > Themes > Nitro > Settings), and paste this code there:

.master-wrapper-page.home .slider-wrapper {
    margin-bottom: 20px;
}

You can change the margin value (20) to whatever you like.

For any further bug-fixing or modification requests please use our support ticket system instead of writing on the forum.

7 years ago

subhajit01 wrote:
In nitro theme i need to adjust my slider with full view main slider because when i use full slider view that time in slider picture some text will does not showing because of the search and categories part of headline. I need to adjust this one after the slider.Please let me know how can i adjust the slider with full view.

Thanks in advance.


Hello,

can you please open a support ticket about this instead of writing on the forum, and explain better your request there, possibly add a screenshot too. Because at this point I'm not really sure what you want to change.

Regards

Bugs
7 years ago

swissy wrote:
It seems that the theme styling does not get carried over to any custom attributes.

I've noticed it in the product attributes as well as the customer attributes. Is there an easy fix for this or am I perhaps doing something wrong?

For example, a "required" form field has the green flag in the corner of the input in the theme, but a custom attribute input just gets the standard red asterisk.


Hello swissy,

styling should be inherited for the custom attributes too. can you please open a support ticket and provide us with a link to a page where the problem is present?

7 years ago

No, sorry, there are no plans to change the quantity box in this theme.


Regards

7 years ago

swissy wrote:
Is there a way to set the maximum width on the text boxes on the registration and customer info pages?

They look good for mobiles but on a computer it's just ridiculous - the text box takes up the entire screen!

And the boxes behind the radio buttons for gender look quite silly too - they are so wide on a computer screen. I don't want to mess up the css but would love to make these pages look nicer.

Any thoughts?




Hi,
you can't do that out of the box but it is achievable with a little extra css. No need to modify your files, just go to the "custom head styles" panel in your theme administration and paste this code there:

.registration-page .form-fields,
.account-page .form-fields,
.account-page .edit-address {
    max-width: 500px;
}
.registration-page .inputs,
.account-page .inputs {
    float: none;
    width: 100%;
    margin-left: 0;
  margin-right: 0;
}


You can edit the max-with value (which is 500px in this example) to whatever you like. Please keep in mind that this type of layout is not a part of the theme so it's untested and if you experience any side effects you have to fix it on your own.


Regards

7 years ago

bhavikm20 wrote:
Do We have plus minus button to Add Cart functionality rather than manually change number of quantity in Pavillion theme?

Regards
Bhavik


Hello Bhavik,

no, sorry, this functionality is not available for Pavilion theme.

Bugs
7 years ago

Hello Paul,

just answered your question in a support ticket. Please use the support ticket system if you need any further assistance.


Regards

Bugs
7 years ago

swissy wrote:
Hello,

I am new to nopCommerce and Nop Templates so I am not sure if this is an actual bug or if it belongs more in feature requests...

I have the Element theme and if I add items to my shopping cart, the cart in the header does not show any kind of badge or number to tell me how many items are inside. I tested this on the demo sites and they all behave the same away, so I do not know if it's by design? Clicking on the cart icon in the header does give an accurate list of the items inside; I just would like an indicator at quick glance.

Is there a way for me to add a badge?

Thank you!



Hi,

currently there's no any quantity badge in the header shopping cart link, but this has been scheduled for implementation for the next month. Please get back to us in two weeks for more info.


Regards

Shopping
7 years ago

Hello Martijn,

unfortunately this is not a straight forward thing to implement for this theme, due to the fact that it is not the default shopping cart link we are using there, but a modified one. Perhaps you can make a suggestion at noptemplates.uservoice.com so we can eventually implement this in the future.

Regards

7 years ago

jirwin wrote:
Can placement of these elements somehow be de-prioritized so that they do not appear on top? It is strange that some elements (such as the title area) do not present this issue but others (such as the newsletter textbox) do. Any help would be greatly appreciated.



Hello jirwin,

technically you can decrease the z-index values of any elements in your theme, but this is not recommended at all. There are multiple elements stacked into a specific z-index hierarchy in the theme and decreasing any existing z-indexes could lead (and most probably will) to problems.

The better approach is to try to increase the z-index value of the Photoswipe image (or its placeholder). Usually we are using z-index values of up to 1200 in our themes, so a value higher than that will do the job.


Regards