• Resolved diegpl

    (@diegpl)


    I tryed to implement this css but without success. Someone have any ideia? I think maybe this error occurs because I get some products with ajax, so the screen height change. Can be because of this? this is the site wpsoftwares.com

    tks!

    body .widget-container {
    display: table-cell;
    }

    body .bottomcontainerBox {
    height: auto;
    }

    http://wordpress.org/extend/plugins/q2w3-fixed-widget/

Viewing 10 replies - 1 through 10 (of 10 total)
  • Thread Starter diegpl

    (@diegpl)

    And I can`t set float: left. Because the design is responsive…

    Plugin Contributor Max Bond

    (@max-bond)

    Hello!
    You need to do only one thing: set widget width = 350px

    #sidebar .well { width: 350px; }

    Thread Starter diegpl

    (@diegpl)

    But this will disturb the responsive design…

    Plugin Contributor Max Bond

    (@max-bond)

    It will!

    I can suggest only one thing: do not make the sidebar responsive, only main content area.

    Plugin Contributor Max Bond

    (@max-bond)

    In addition.

    I think you need to deactivate transition: all effect.
    That will solve “jumping” when widget mode is changing.

    Also after update to version 2.3 you’ll have a new option – Browser Window Minimum Width. When the browser window width is less then option value – plugin is disabled. This option has been specifically designed to workaround problems with responsive themes.

    Thread Starter diegpl

    (@diegpl)

    In what place can I deactivate trasition? I haven`t seen it…

    Plugin Contributor Max Bond

    (@max-bond)

    In what place can I deactivate trasition?

    Look at theme.css line 571:

    #sidebar .well {
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
    }

    Try to replace “all” on “box-shadow”!

    Thread Starter diegpl

    (@diegpl)

    wow, u are an expert. I never would have thought of that. Now works all right, but I am with a problem yet… I don`t know why, but the social network icons is escaping of div when I decrease the browser size, do u have any idea what I can do about this? tks!

    Thread Starter diegpl

    (@diegpl)

    I got it. tks!

    Plugin Contributor Max Bond

    (@max-bond)

    🙂 Fine!

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Problem with height and width’ is closed to new replies.