Notice: These forums are now retired and closed. For active support, please Submit a Ticket or visit our official WordPress.org community pages.
Kadence Theme | Kadence Blocks | Starter Templates | WooCommerce Email Designer | Ascend | Virtue | Pinnacle

Search Results for 'ipad'

Home / Forums / Search / Search Results for 'ipad'

Viewing 20 results - 501 through 520 (of 781 total)
  • Author
    Search Results
  • #69138

    Hmmmm….

    1. The menu moving under the header looks fine on Android and when resizing any computer browser on my Mac, but on the iPads it is still giving me the small drop-down on the right….

    Also, can the menu move under the header sooner? If you resize the window, you can see that on the first transition the menu doesn’t fit on the right anymore and takes up two lines.

    What are the actual values that are being used for the screen size changes? It looks like there are four different sizes?

    2. That’s great, thanks!

    3. Hmmm…. I’ve changed the image sizes, and I think I have to make the originals equally proportioned, but aside from that, when it goes to two rows, there is no padding… the images are stuck together. Also, I don’t know what to do with the labels. Can you have a look and see what you recommend to make these display better as the screen size changes?

    4. Hmmm… Not great. I want to try two different options:

    Can they be displayed horizontally, like I have on the home page? And possibly with link-colored text (red)?

    Or Horizontally with a small image, similar to the recent posts in the sidebar….

    5. I suppose I only know very limited css. I’ve only picked it up in bits and pieces, whenever I needed something.

    I appreciate all this help, Ben!

    #68300

    Hey there, i have two questions.

    Is it possible to have my normal menus primary and secondary on mobile and ipad?
    And if i want to remove something from my topbar when i see it on phone, what code do i have to use there?

    Hope you can help.

    Best regards

    In forum: Pinnacle Theme

    In reply to: logo size on mobile

    #68292

    I also see that on iPad my logo doesn’t align to the left. Any idea how to fix it also?
    Tx,

    #68177

    First off, your support for this theme is FANTASTIC. There is so much documentation and the responses are quick, you are awesome. Definitely worth the money paying for the premium version! And thanks for the tip on setting the row class to have a 0 margin, that helped me fix another small problem I had been debugging.

    Secondly, I hope you can understand that I am a bit hesitant to let you in the back-end of my site. If you really think there is nothing you can help me with without going in the back-end, I will have no problem letting you to see what you can do.

    However, before we do that, is there any known plugins or code that will destroy formatting for IOS 7 that I can troubleshoot with first?

    A bit more in detail description of my problem:

    My site looks exactly how it’s supposed in both the google chrome inspect element mobile testing, as well as on all the phones and tablets I have tested it on (a mixture of new and old IOS and Android devices).

    However I am STILL having issues with an iPad and iPhone, both running IOS 7. So to me that says the IOS is reading my code completely wrong or something. I am tempted to take a video of what’s happening simply because to me, it is just so mind boggling. The site will load completely blue with my logo at the top about 50% of the time. The other 50%, it will load exactly how it is supposed to, then as soon as I click an anchor link inside the site, it crashes and turns black-blueish with zero functionality.

    Maybe the iPhone and iPad i am seeing this on are corrupted?

    And the same thing happens on both Chrome and Safari on those IOS 7 devices.

    This really isn’t a huge deal to me, mostly because of the lack of people who still use IOS 7, but it would be nice to know what is causing this.

    Thanks! Connor

    #68024

    Hi! I am having a small issue with the main shop page.

    The dynamic filter buttons work great on Safari and iPad, but when trying to filter products on iOS, the options spring back and it is therefore impossible to make a selection. Go to on an iPhone and try to filter the products and you’ll see the issue. I haven’t tried on Android/Windows phone. Any ideas on how to sort this?

    Thanks!

    #67897

    Hello there! First off, I just want to say I love this theme. It’s so diverse and customizable, it’s really a joy to use as a developer.

    Now for the problem: for some reason, my site (mainsailstudio.com [still in development]) is displayed incorrectly by older versions of IOS. This is definitely not a problem with the site, as I designed everything to be responsive.

    On my old iPhone 4 and a family members iPad, the pages in my site so not display the typical background, and a super large amount of space is added in between divs. It renders the site completely in unusable on those devices, and I was just curious if this happened to be the themes fault.

    The site looks perfect on other android devices of similar ratio.

    Any input on this at all would be great! Thanks, Connor.

    In forum: Virtue Theme

    In reply to: I phone 6

    #67332
    This reply has been marked as private.
    #67005

    When on a mobile device (iPad/ iPhone) the drop down menu for my site opens and closes in less than a second. ( ). I looked ALL OVER int he options to see if this is a setting (which would be a weird setting to have in the first place) and I cannot find anything! Obviously, this needs to be longer to allow people to get anywhere on my site.

    #67003

    When looking at my website, , on an iPad the primary menu is gone! It use to work… and now it no longer does. Is this a setting that needs to be enabled? I made sure in the mobile area of the settings the menu was turned on.

    #66578

    Did you clear your total cache plugin? I see the slider on ipad?

    On mobile I’m seeing the demo theme slider?

    You can set the font size for the call to action for mobile with css like this:

    @media (max-width: 767px){
        .kad-call-title-case .kad-call-title {
            font-size: 14px;
        }
    }

    and since your not using the button you will want this:

    
    .kad-call-button-case {
        display: none;
    }

    Ben

    In forum: Virtue Theme
    #65578

    Theoretically it would have worked beautifully. But, then the issue came up of the “menu + arrow icon” was overlaying on top of some items in Revolution Slider. (I reactivated Virtue to recreate the issue just if you’re interested in seeing http://secretarydeluxe.com/tandembikeinn3/)

    I did have my line height set, but here’s a screen cap of what kept happening:
    http://secretarydeluxe.com/tandembikeinn3/wp-content/uploads/2015/11/headererror.png

    I couldn’t recreate this issue, but I guess on iPad portrait, and shrinking screen to about 80%, client kept seeing the original “hamburger” menu icon.

    #65498

    1. No sorry, still not visible on my Ipad

    2. Yeah, it’s the ” Woocommerce Product Search” plugin. Too bad that my programming skills are too limited to to write a child theme.

    #65363

    1. Ipad… Yeah I think I know why this just isn’t how the whole thing is designed… add this:

    @media only screen and (device-width: 768px) {
    #nav-main ul.sf-menu {
        display: block;
        float:none;
        text-align:center;
        }
         #nav-main ul.sf-menu > li {
             float:none;
             display:inline-block;
         }
         #kad-menu-search-popup .form-search .search-query {
        max-width: 300px;
        min-width: 260px;
    }
    #kad-menu-search-popup {
        max-width: 300px;
        right: -100px;
    }
    ul#kad-head-cart-popup {
        right: -200px;
        width: 400px;
    }
    #nav-main ul.sf-menu ul#kad-head-cart-popup ul.cart_list li a {
        padding-top: 20px;
        display: block;
    }
    }

    2. Are you talking about some plugin? What one? The only way to get a plugin into the search would be to write it in through a child theme. You would need to turn it off in the theme options and add in a new function to add a search and there hook in whatever plugin your using.

    Ben

    #65312

    Thank you Ben, the first issue was solved.
    On my Ipad the Primary menu doesn’t show when I have the Ipad flipped in the widest layout, strange.
    Regarding question two, the Woocommerce searchengine works a little different, when you start to write it gives suggestions on products, is there any way we can get that in the search in primary menu?

    #64422

    Hey folks,

    iam using your premium theme “Pinnacle Theme” and it looks not really responsive on my website http://www.schwarzrot.net . Maybe i did something wrong with it. Because if i drag my safari browser on my mac to iphone size it looks perfect but not on the phone itself. Same issue on the iPad or phones from friends. Pls help me id love to see this theme working 100% responsive like when i shrink my browser. Greetings from Germany max

    #64197
    This reply has been marked as private.
    In forum: Virtue Theme

    In reply to: Retina logo question

    #64147

    I’m not seeing the logo really large on Ipad.

    Ben

    #64140

    Are you wanting the boxed to be removed on ipad in both landscape and portrait orientations?

    Ben

    In forum: Virtue Theme

    In reply to: Retina logo question

    #64102

    I think I solved it, will let you know as soon as I find some Ipad to check live.

    #64089
    This reply has been marked as private.
Viewing 20 results - 501 through 520 (of 781 total)