© 2021 Greatives Hub - Powered by Greatives & Greatives Web

Forums

A hub website, accessible exclusively to Impeka users, to improve and support Impeka

Forum Replies Created

Viewing 15 replies - 16 through 30 (of 82 total)
  • Author
    Replies
  • in reply to: Closing a modal #1675
    Marius1989
    Participant
    Hub Member Badge

    I guess it is everything possible you mentioned, but there are no settings inside the theme options.

    But there are in-built options inside the modal library they use. You can close the modals via ESC and also via BG Overlay click. It’s just the decision of the team to disable them or not to enable them. Not sure what the dedault values are. You can get everything you need here: dimsemenov.com/plugins/magnific-popup/documentation.html

    Search for “closeOnBgClick” and “enableEscapeKey”

    b) should be a tiny CSS snippet which will provide you the required result.

    I know that might not the way you were looking for, but since there are no options for that available in the backend, at least I want to hint you a possible solution.
    Not sure if there will be these options in the future, since over the years, here and there I remember people to ask for these options a) + c).

    in reply to: Impeka Registration – release 1.2.5 #568
    Marius1989
    Participant
    Hub Member Badge

    Finally, congrats.

    Are there any info what kind of data you collect in general when using your themes?
    And what additional data will be collected through this implementation?

    Thanks.

    in reply to: Gone from Marketplace? #535
    Marius1989
    Participant
    Hub Member Badge

    Count me in as a regular supporter, if there will be a way to back your work in a direct and fair way in the future @Greatives.

    Marius1989
    Participant
    Hub Member Badge

    #xmas .grve-button-group {
    margin-top: 0;
    gap: 15px;
    }

    #xmas .grve-button-group .grve-element {
    margin-right: 0!important;
    margin-top: 0;
    }

    Cheers!

    in reply to: Gone from Marketplace? #519
    Marius1989
    Participant
    Hub Member Badge

    Really happy for you this got resolved in no time and the theme is back on track.

    Just want to mention here, I have to agree with @hiegl. Envato is not the type of company we want to support through their commissions/fees. They do not care about their creators at all, this is a fact. Any author will be confrontated with their practices. Sooner or later.

    I remember, I had a chat with @Kosmas around 1.5 years ago about exactly that topic and if there is any chance to purchase their themes on another -or their own- platform, since any penny that goes to Envato through a purchase, I highly regret.
    Just read this message I sent back then and this is just a 1:1 confirmation for me – again (stopped counting).

    However, I understand their decision being an exclusive author on this platform and wish them all the best for the future.
    For me, I will avoid this platform at all costs. Would have a better conscience if I could tell my clients to buy their themes on another place.

    in reply to: Impeka Buttons #497
    Marius1989
    Participant
    Hub Member Badge

    #grve-theme-wrapper .grve-btn {
    white-space: normal;
    }

    Hope it helps.

    • This reply was modified 2 years, 7 months ago by Marius1989.
    in reply to: More Vanilla Content #481
    Marius1989
    Participant
    Hub Member Badge

    Can we expect more element variants in the future?
    Often, there is only 1 option available and we have to work with that.
    1-2 more per element would be a nice addition, to be honest.

    I just came across the tabs element and I was forced to use the only option available, again.
    Movedo had some more options if I remember correctly, also inside the accordion element.

    At least, the one which is available is really simple and it is easy to change things.
    A modern solution where I see more and more frequently is the following one:

    http://b2t9opec.myraidbox.de/pricing-table-toggle-switch/

    Just something I quickly threw together but something that would be so amazing to have it in-built.
    Yeah, just an example, as I would really appreciate some more overall element styling options.

    I also asked that some time back, when using Movedo and I really think this would be a very tiny but useful feature for tabs.
    There could be an option that transitions the tab height smoothly, dependend on the different tab content, when clicking through tabs. The user experience would be so much better.
    Would you consider this in the future?

    in reply to: Anchor menu overlaps page content on mobile. #480
    Marius1989
    Participant
    Hub Member Badge

    Glad you like it.
    Looks pretty sleek on your site!

    in reply to: Anchor menu overlaps page content on mobile. #477
    Marius1989
    Participant
    Hub Member Badge

    A solution to your question would be:

    #grve-page-anchor {
        height: auto;
    }

    There might be some issues with fixed, shrink, scroll up headers, etc. I guess this is why it requires a fixed height, but this is easy to find out just by testing.

    To avoid any potential issues, you could wrap this code inside media queries of max-width 1023px, this is the width where the responsive header comes into play by default ( I guess ). So there won’t be any issues with the desktop headers.

    • This reply was modified 2 years, 8 months ago by Marius1989.
    in reply to: Anchor menu overlaps page content on mobile. #476
    Marius1989
    Participant
    Hub Member Badge

    Hey Dan.

    Try the following code, hope you like it.

    @media only screen and (max-width: 775px) {
      .grve-anchor-menu .grve-anchor-wrapper .grve-container {
        width: 100%;
        max-width: 100%;
        margin-left: 28px;
      }
      .grve-wrapper.grve-anchor-wrapper:after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 150px;
        height: 100%;
        background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 61%, rgba(255,255,255,1) 100%);
        pointer-events: none;
      }
     .grve-anchor-menu ul {
        overflow-x: auto;
        white-space: nowrap;
        padding-right: 160px;
      }
    }

    Disclaimer: This is not an answer to your question, just my personal solution for better UI/UX, as soon as the anchor menu items takes too much place on smaller screens. I also added a small visual indicator, so the user knows there is still some content, when swiping the anchor menu.

    in reply to: Pricing table with switching option #474
    Marius1989
    Participant
    Hub Member Badge

    Thank you!
    I agree, an in-built solution would also be great. So who knows, maybe it will be integrated at some time.

    in reply to: Pricing table with switching option #470
    Marius1989
    Participant
    Hub Member Badge

    That was actually I was also looking for – regarding some future projects, so I decided to exted my repository.
    The only important thing for me was to use the original pricing table page builder element, so clients could make any changes on their own easily, without breaking anything.
    It is only required to insert a single CSS class into the row.

    The toggle itsself is HTML & CSS and 1 line of jQuery.
    The function to switch the prices is another line of jQuery, so all in all very very leightweight.

    Here is how I solved it (sorry for the bad quality, but I think it should be clear how it is designed).

    View post on imgur.com

    • This reply was modified 2 years, 8 months ago by Marius1989.
    • This reply was modified 2 years, 8 months ago by Marius1989.
    in reply to: Pricing table with switching option #469
    Marius1989
    Participant
    Hub Member Badge

    A visual switcher needs a custom implementation, that’s right. Shouldn’t be too hard to achieve though.

    in reply to: Pricing table with switching option #467
    Marius1989
    Participant
    Hub Member Badge

    You can use tabs element in this case and remove the tab switch animation, so it is looking like only the price tag is swapped.
    Quick and easy solution. Hope it helps.

    in reply to: Title with line inherit alignment bug #464
    Marius1989
    Participant
    Hub Member Badge

    Sure, you are able to align the heading itself, this is the reason why I was asking for your specific use case.
    As I said, not a bug, just missing some styling rules. Not sure if they are really needed.
    If you really do, just open a ticket and discuss it with the team, I guess.

Viewing 15 replies - 16 through 30 (of 82 total)
Privacy Preferences

When you visit our website, it may store information through your browser from specific services, usually in the form of cookies. Here you can change your Privacy preferences. It is worth noting that blocking some types of cookies may impact your experience on our website and the services we are able to offer.

Our website uses cookies, mainly from 3rd party services. Define your Privacy Preferences and/or agree to our use of cookies.