Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Nick Diego

    (@ndiego)

    Hi SocialSpark,

    In looking at the page, you have the image set as a background image. This is perfectly fine, but there is some default CSS in the plugin that dictates the height, which is set to 400px. Check out the default styles page for more details.

    Anyway, to fix this, you simply need to specify a new height. One the style tab of the block, enter the following (make sure you enter the block’s id):

    #blox_[enter id] .blox-theme-default .blox-image-wrap.blox-image-background {
        height: 295px;
    }

    That will make the header image only 295px tall. Let me know if this solves the issue. If you have any further questions let me know!

    Nick

    Thread Starter SocialSparkMedia

    (@socialsparkmedia)

    Thanks so much, Nick. Although I couldn’t get that code to work in the actual global block settings (even with !important), when I added it to the Custom CSS in the default plugin settings it worked.

    Plugin Author Nick Diego

    (@ndiego)

    Hi SocialSpark,

    This was a case of late night coding on my part. There is an error in the code snippet I provided, an extra space. It should have been:

    #blox_[enter id].blox-theme-default .blox-image-wrap.blox-image-background {
        height: 295px;
    }

    Sorry for the inconvenience!

    Nick

    Thread Starter SocialSparkMedia

    (@socialsparkmedia)

    Ahhhhh! Well at least now I know it wasn’t me! Thanks for your help and follow-up, this is just an awesome plugin. 🙂

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Image Size Question’ is closed to new replies.