Hi,
On this page - http://blenckerspersonaltraining.nl/test/ - I have added a skew to the second section. I have used this code for it:
/* Skew a section */ .skew-box { -moz-transform: skewX(-15deg); -ms-transform: skewX(-15deg); -o-transform: skewX(-15deg); -webkit-transform: skewX(-15deg); transform: skewX(-15deg); margin:-2% 0!important; } .skew-box> *{ -moz-transform: skewX(15deg); -ms-transform: skewX(15deg); -o-transform: skewX(15deg); -webkit-transform: skewX(15deg); transform: skewX(15deg); }
Now what I would like to accomplish is that the left x of Column 1 and the right x of Column 2 are straight i.e. are not skewed. I tried some code I found from another source but that didn’t work, and I’m not fluent in this. Can anyone help me?