• Resolved Lee Honeycutt

    (@alpinelakesdesign)


    I was wondering if there were any way to make the widgetized areas of different sizes? For example, I’d like to have an area that’s got two columns, with one column of one-third width and the other two-thirds. Would I just set the options to two columns and try to make the adjustment in CSS, or would I need to override a function setting?

    Also, is there anyway to make different heights for different media queries? Would I just take care of this in Custom Styles tab, which I assume overrides default settings?

    — Lee

    http://wordpress.org/extend/plugins/klipspringer/

Viewing 1 replies (of 1 total)
  • Plugin Author stacigh

    (@stacigh)

    Hi Lee,

    Custom styles would be the best way to go for both situations. The best way to adjust the widths of the columns to be of unequal size would be to use the id’s since all columns use the same classes. Normally I wouldn’t suggest this but the JS isn’t toggling classes to the columns so this solution is completely legit. Any styles applied with the ID would also win against the style that’s being applied via the class names.

    #ssklip-col1 {
    width: 33%;
    }

    #ssklip-col2 {
    width: 66%;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Spanning widgetized areas?’ is closed to new replies.