changing proportions of my theme (responsive)

  • Unknown's avatar

    Hi @supernovia.
    Thank you again for your help.
    (I’d really like to learn the css but that’s a big thing!)
    1) Ok, but could you tell me which one is it among the three ?
    2) Brilliant! I wish I’d thought of it! ;)

  • Unknown's avatar

    (for the moment i have these:)

    @media screen and (min-width: 1000px) {
    #page {
    max-width: 1160px;
    }

    #main {
    width: 73.75%;
    }
    }

    @media screen and (min-width: 750px) {
    .single #main {
    max-width: 50%;
    float: left;
    margin-left: 40px;
    }
    }

    @media screen and (max-width: 699px) {
    .single #page {
    padding-left: 30px;
    padding-right: 30px;
    }
    }

  • Both of these mention .single stuff, so remove them:

    @media screen and (min-width: 750px) {
    .single #main {
    max-width: 50%;
    float: left;
    margin-left: 40px;
    }
    }
    @media screen and (max-width: 699px) {
    .single #page {
    padding-left: 30px;
    padding-right: 30px;
    }
    }
  • Unknown's avatar

    Well, i tried this:

    I added a blank widget.

    If I leave the three snippets, the main text in the center become very tight.

    Then i tried to delete some snippets (“@media screen”).
    – when i delete the third one, the text is very very tight.
    – when i delete the second one, that seems ok (for the moment i can only test on my 12 inch laptop)
    (but it makes a little line (automatic with a text-widget) appears.)
    – when i delete the first snippet, that makes the text very very (even more than previously) tight too.

  • Delete both of the ones I mentioned, please. :)

  • Unknown's avatar

    (oh i didn’t saw your post before i did mine, so it was not an answer to your last one)

  • Unknown's avatar

    Ok i just left the first “@media screen” block!!
    that’s nice!
    i have just this single line, but i’ll think about leaving a little chunk of text or “about” or a little something else. ;)), as you said.
    Thank you again (and again) for your sweet help.

  • Ah, I’m glad that did the trick. Cheers :)

  • The topic ‘changing proportions of my theme (responsive)’ is closed to new replies.