0

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/

Marc Audet
  • 46,011
  • 11
  • 63
  • 83
Rage
  • 63
  • 3
  • 9
  • Thanks for replying. I think all the main framework is predominantly in the link included below, so not neccesarily. - https://github.com/markdalgleish/bespoke.js/tree/master/demo – Rage Aug 23 '13 at 12:06

1 Answers1

0

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.

Nicolae Olariu
  • 2,487
  • 2
  • 18
  • 30