• Resolved zs33

    (@zs33)


    hi! i messed sth up, but dont know what. yesterday everything was fine, now it stoped working as it should
    when i click the photo or description of a post on the home page instead of taking me to the actual post it takes me to the “przepisy” page.
    it works fine when i click the link to the post in the widget area , and also in the latest post carousel.
    how can i fix this?

    another problem i am having is i changed the width of the content to 700px, and it also changed the width of elements in the “easy recipe” plugin

    @media (min-width: 1000px) {
    .entry-content * {
    width:700px;
    margin-left:auto;
    margin-right:auto;
    }
    }

    this is how i did it, how do i fix this?
    website: https://zielonysrodek.pl/
    easy recipe: https://zielonysrodek.pl/2015/03/jaglane-kotleciki-z-dynia-i-jarmuzem/

    thank you so much and i really love this theme!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Change your content css to:

    @media (min-width: 1000px) {
    .entry-content {
    width:700px;
    margin-left:auto;
    margin-right:auto;
    }
    }

    and you added this:

    #content .main {
      float: right;
    }

    but for your site to work on mobile you need to remove that and add this instead:

    @media (min-width: 992px) {
    body .main.col-lg-9 {float:right;}
    }

    Kadence Themes

    Thread Starter zs33

    (@zs33)

    thanks for the reply!
    ok the width is ok now.
    but the mobile still isnt. when i want to open a post from the homepage and click on the photo it takes me to the “przepisy” page instead of the post. why could this be?
    maybe this is relevant: i installed regenerate-thumbnails, but didnt seem to do the thing it was supposed to and i uninstalled it.

    You didn’t remove this css:

    #content .main {
      float: right;
    }

    that has to be removed for the mobile to work.

    Kadence Themes

    Thread Starter zs33

    (@zs33)

    wow thanks, didnt get that!

    Thread Starter zs33

    (@zs33)

    resolved

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘mobile version not working corectly’ is closed to new replies.