• Resolved kk_admin

    (@kk_admin)


    I love Pinnacle theme but sincerely I have several issues with mobile version of my site klarakolonits.com.

    first: centering of widget text field images does not work on mobile for me and I posted it originally here – I wanted to edit the previous topic, but I can’t, so please forgive me the topic-flood.

    second: The size of page title and logo: can they be smaller on mobile? They are way to big like this.

    third: call to action background. At its current (Inherit) setting it’s perfect on desktop, but on mobile shows only a little part of it. If I select cover or contain, it shows the whole image there is a huge void space beyond and below the section.

    Thank you very much in advance for your support!

Viewing 5 replies - 1 through 5 (of 5 total)
  • 1. Did the CSS I provided in the other topic work for you? Place all CSS into Appearance> Theme Options> Custom CSS.

    img.aligncenter {
        float: none;
        margin-right: auto;
        margin-left: auto;
    }

    2. Try adding this CSS

    @media (max-width: 767px) {
    .kad-page-title.home-page-title {
        font-size: 30px;
    }
    
    .trans-header #logo a.brand {
        font-size: 18px;
     }
    }

    3. Sorry if I’m misunderstanding here, but it sounds like CSS like this that will adjust the padding of your home call to action on mobile will help your issue.

    @media (max-width: 992px) {
    .kt-home-call-to-action {
        padding-top: 90px;
        padding-bottom: 90px;
      }
    }

    Try adjusting the “90px” amount until you get it how you want. Or if I missed the point entirely, let me know and I’ll try to give you a better answer.

    Thread Starter kk_admin

    (@kk_admin)

    Thank you so much! 2/3 OK and the silliest one stuck… for the other ones I think the problem is me not being familiar with the @media css, but I’m trying to learn as fast as possible ??

    1. No go unfortunately. I still have images perfectly centered on my laptop (or any other PC) and aligned to left on mobile, in preview and on actual mobile device as well (see screenshot from Samsung Galaxy). I’m sure this is some silly thing I messed up. This is the code for one of these widgets, maybe this helps, it has all aligncenters one may ask for…:

    <a href="https://klarakolonits.com/2016-2017/"><img class="aligncenter wp-image-3293" src="https://klarakolonits.com/wp-content/uploads/2016/07/2016-mozart-2-300x120.jpg" width="250" height="100" data-id="3081" /></a>
    <p style="text-align: center;"><a href="https://klarakolonits.com/2016-2017/"><strong>MOZART | CONCERT ARIAS</strong></a></p>
    <p style="text-align: center;"></p>
    <p style="text-align: center;"><a href=" https://klarakolonits.com/2016-2017#jazz"><img class="aligncenter wp-image-3291" src="https://klarakolonits.com/wp-content/uploads/2016/07/2016-jazz-2-300x120.jpg" width="250" height="100" data-id="3081" /></a></p>
    <p style="text-align: center;"><a href="https://klarakolonits.com/2016-2017#jazz"><strong>OPERA | JAZZ</strong></a></p>
    <p style="text-align: center;"><a href="https://klarakolonits.com/2016-2017#katlan"><img class="aligncenter wp-image-3292" src="https://klarakolonits.com/wp-content/uploads/2016/07/2016-cosi-1-300x120.jpg" width="250" height="100" data-id="3081" /></a></p>
    <p style="text-align: center;"><strong><a href="https://klarakolonits.com/2016-2017/">COSì FAN TUTTE | OperaLab</a></strong></p>
    <p style="text-align: center;"><a href=" https://klarakolonits.com/2016-2017#strauss"><img class="aligncenter wp-image-3290" src="https://klarakolonits.com/wp-content/uploads/2016/07/2016-strauss-2-300x120.jpg" width="250" height="100" data-id="3081" /></a></p>
    <p style="text-align: center;"><strong><a href="https://klarakolonits.com/2016-2017/">STRAUSS: VIER LETZTE LIEDER</a></strong></p>

    2. This was perfect thank you! What should I change to keep the smaller page title on every page?

    3.Yes, indeed adjusting the padding works perfectly for mobile not supporting “Fixed” image. I will check on iPad later, but that should not be that much of an issue, there are rather phone and pc visitors.

    Thread Starter kk_admin

    (@kk_admin)

    ad. 2 on every page that uses Page Title header layout, of course

    Thread Starter kk_admin

    (@kk_admin)

    As the 2 Qs in title found their solutions, I’m marking as resolved this one, we can continue the investigation of the first one in its original topic. Thank you very much!

    1. Here is some CSS that appears to work on my end:

    .textwidget .aligncenter {
        float: none;
        margin-right: auto;
        margin-left: auto;
    }

    2. Change this CSS:

    @media (max-width: 767px) {
    .kad-page-title.home-page-title {
        font-size: 30px;
    }
    
    .trans-header #logo a.brand {
        font-size: 18px;
     }
    }

    to this:
    @media (max-width: 767px) {
    .kad-page-title {
    font-size: 30px;
    }

    .trans-header #logo a.brand {
    font-size: 18px;
    }
    }

    3. This is resolved then?

    Hope this helps!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘mobile version: logo&pagetitle size, calltoaction image’ is closed to new replies.