Decrease width on Bespoke.js

215 Views Asked by At

I'd like to know how to decrease the width between <sections> </sections> within the 'Classic' theme for Bespoke.js

The GitHub can be found here - http://markdalgleish.com/projects/bespoke.js/

1

There are 1 best solutions below

0
Nicolae Olariu On BEST ANSWER

You could do it from css as long as you're using the default width for a certain box. CSS:

.classic .bespoke-parent section.bespoke-inactive.bespoke-before {
    left: 55%;
}

.classic .bespose-parent section.bespoke-inactive.bespoke-after {
    left: 45%;
}

You can play with left values until you get the desired result. At least this is I came up with on a fast Bespoke overview.