Reputation: 8967
Here's how I set my top padding in my css:
body {
font-size: {{ font_size }}px;
margin: 0;
padding: 100px 0 20px 0;
width:100% !important;
}
How do I change the top padding, which is 100px on the example above using the simplest javascript function without using jQuery?
Upvotes: 13
Views: 38534
Reputation: 2273
JavaScript syntax: object.style.paddingTop="2cm"
see link: http://www.w3schools.com/cssref/pr_padding-top.asp
so it should be:
<!-- note that this chunk of code should be after the body tag to work -->
<script type="text/javascript">
document.body.style.paddingTop = "100px";
</script>
Upvotes: 0