Reputation: 4142
What I'm using:
It is using position: absolute on :before
What I want:
I want to use the navigation:
But! I also want to add padding, say 10px, to the parent container so that I get something like this:
How can I do this and at the same time, keep it responsive?
Upvotes: 0
Views: 35
Reputation: 4413
Wrap ".stepwizard" inside a new div
<div style="padding:10px;background-color:#fff;">
Upvotes: 1