Close

Profile: Valentin

Avatar

User posts

5 years ago

toanhnt wrote:
Hi, I have created a new category template (full width). Now I want to show 3 products per row. How can I achieve it?
My site is running on Emporium theme version 4.0
Thank you


Hello toanhnt,

this would require a lot of styling customizations on many resolutions and such major layout changes are not part of our scope of support.

If you are interested you can check our Theme Tweaks service which allows you to hire us to do custom work on your site and only pay of the time it takes to complete the task.

For cases like yours, we normally suggest the Theme Tweak option, which is up to 1 hour of time.

5 years ago

svm wrote:
I have a question if this is possible to do:

Current behavior:
When we scroll down (on mobile devices) menu disappear and when you scroll up it appear again. I revived feedback from client that they have problem to see it.

Expected behavior:
When you scroll down or up - menu should be displayed always. Can you give me some hint how to do that ?


This is possible also to change color of that menu only on mobile for darkens (on site I'm using light one)?


Hello svm,

to show the mobile menu at all times, you can add the following code to your theme`s Custom Head Styles section:

.mobile.nav-top .responsive-nav-wrapper.nav-up {
    -webkit-transform: none;
    transform: none;
}


As for changing its color, you can also add the following code:

.mobile .responsive-nav-wrapper {
    background: #YOUR_COLOR !important; /* use the HEX code for the color you want */
}



Hope this was helpful.

5 years ago

[email protected] wrote:
I'd like to remove the "Our Shops" title above the store locator map. It takes up too much space on the page. I have removed it from the two instances in the Resources.en-us within the plugin but it still shows on the screen. Can someone tell me where to find it or how I can remove this?

Update: I found "Our Shops" in the NOP string resources, and was able to edit, but not delete the title, which would be preferred. Any suggestions?


Hello [email protected],

to achieve this, you need to add the following code:

.all-shops-page .page-title {
   display: none;
}


to this file in your file explorer:

~ Presentation/Plugins/SevenSpikes.Nop.Plugins.StoreLocator/Themes/DefaultClean/Content/StoreLocator.css

That is you are using only the plugin with the Default clean styling. If you are also using some of our themes, just add the code to your theme`s Custom Head Styles section in the admin panel and you will be good to go.

Style Bugs
5 years ago

jakubz wrote:
Oh, can you tell me if element theme variant 1 is supported?


Hello jakubz,

yes, the Sale of the day plugin is styled and fully supported by the Element theme.

toanhnt wrote:

This change is available for version 4.1 only or 4.0 as well? Let me ask my developer if he can change it.
Thanks


Hello toanhnt,

to answer your question - this change is available for the current version which is 4.1 and all the future versions.

toanhnt wrote:
Greetings to all,

the localized URL`s for the info-boxes have been added in the Emporium theme and an update has been released.

If you update your theme, the changes will apply on your site too.

Have a nice day!

thank you for the change. Is there a way you can post how to implement the change here. My developer has made so many modifications to the theme. He said it will take much time for him to upload new theme and copy changes. Thanks


Hello toanhnt,

the required change is only in the theme`s plugin so you can replace only that and it will work. Make a back-up copy of it just in case, it is this folder:

~ Presentation\Nop.Web\Plugins\SevenSpikes.Theme.Emporium

Then replace it with the same folder from the theme package that you downloaded.

Hope clarifies things a bit.

Greetings to all,

the localized URL`s for the info-boxes have been added in the Emporium theme and an update has been released.

If you update your theme, the changes will apply on your site too.

Have a nice day!

toanhnt wrote:
Could you notify us here after implementation? thank you


Hello again toanhnt,

for sure we will inform you by posting here as soon as the task is done.

Have a nice day!

5 years ago

[email protected] wrote:
Hello, I needed to enlarge the logo, is it somehow done in setup or command?


Hello [email protected],

if you need to enlarge the logo you need to upload a bigger image and then add the following code to your theme`s Custom Head Styles section (it located in your admin panel -> Nop-templates -> Themes -> Emporium -> Settings):


@media all and (max-width: 1024px) {
     .mobile-logo .logo {
           width: auto;
           height: auto;
     }
     .mobile-logo img {
          position: static;
          top: 0;
          left: 0;
          -webkit-transform: none;
          -ms-transform: none;
          transform: none;
     }
}

@media all and (min-width: 1025px) {
     .header-lower:after {
          content: '';
          display: block;
          clear: both;
     }
     .header-logo {
          max-width: 20%;
     }
     .header-logo a img {
           max-height: none;
     }
}



However, I need to warn you that in the Emporium theme we have intentionally restricted the logo size to always fit the header and if you make it larger it might cause layout issues.

Hope this was helpful.
Have a nice day!

toanhnt wrote:
Hi, I need to add different url to second language for the info boxes. There is no point of having multi-language then point the url to English page. Please help

Hello toanhnt,

thank you for your consideration. That is a good suggestion and we will schedule it for implementation.

Hi,
When you say you will schedule for implementation, will that going to be for the next version or version 4.0 and 4.1? Thank you


Hello again toanhnt,

it will most probably be implemented in version 4.1 and available in every version from that point on.