• Resolved wlasch

    (@wlasch)


    Hello, I have found a little failure in pictorico, it is nothing critical, but can(and should, I think) be corrected.

    So in fact: mobile version; click on menu-> menu dropped down, try to click on sitetitle(branding, name) -> not clickable -> confused = usability issue ??

    best regards

Viewing 4 replies - 1 through 4 (of 4 total)
  • Moderator Kathryn Presner

    (@zoonini)

    Thanks for the report – our developers will have a look at this and we’ll keep you posted here.

    Moderator Kathryn Presner

    (@zoonini)

    Hi there – this issue has been fixed and will be included in the next version of Pictorico.

    If you’d like to make the change yourself in the meantime, you can open up style.css and make the following tweaks.

    Change this:

    .site-header {
      background: white;
    }

    to

    .site-header {
      background: white;
      position: relative;
    }

    and change:

    @media screen and (max-width: 885px) {
      .main-navigation {
        border: 0;
        float: none;
        max-width: 100%;
      }
    }

    to:

    @media screen and (max-width: 885px) {
      .main-navigation {
        border: 0;
        float: left;
        max-width: 100%;
        width: 100%;
        position: static;
      }
    }
    Thread Starter wlasch

    (@wlasch)

    Thank You very much Kathryn. We all truly appriciate your and dev’s work!

    Moderator Kathryn Presner

    (@zoonini)

    Our pleasure!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘mobile version, sitetitle not clickable’ is closed to new replies.