Viewing 2 replies - 1 through 2 (of 2 total)
  • I got tired of waiting for the plugin author to reply to your question and didn’t want to invest in another plugin so I was able to get it to be responsive to a point (it’s not perfectly centered) by messing with css media queries. I’m no expert but it does work. I tested it on my own website (with a responsive theme) and I made sure it works on the iPhone 3,4 & 5 and Android S4 Galaxy. Here you go if interested. Simply add the below code to your custom.css or other stylesheet. Good luck, let me know if this works. If you need help tweaking it let me know and I can help or if you figure out how to get it centered please let me know.

    @media only screen and (max-width:360px) {
    #cboxWrapper, #colorbox {

    -webkit-transform: scale(.83);
    -moz-transform: scale(.83);
    -ms-transform: scale(.83);
    -o-transform: scale(.83);
    transform: scale(.83);
    margin-left: -39px;
    }}

    @media only screen and (max-height:360px) {
    #cboxWrapper, #colorbox {

    -webkit-transform: scale(.83);
    -moz-transform: scale(.83);
    -ms-transform: scale(.83);
    -o-transform: scale(.83);
    transform: scale(.83);
    margin-top: -32px;
    }}

    Thread Starter General Seed

    (@autocultivo)

    Thanks markob17, now i don,t use this plugin.

    I keep your instructions for the future.

    Sorry for my english, is basic

    Thanks for your help, better support than the autor : )

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘When will be Responsive?’ is closed to new replies.