I would like to add padding to a contentbox and several contentboxes.
I've looked into the W3SCHOOLS on Id and class but I don't seem to get it right.
1. How do I change padding on one specific Contentbox. The box i named "Contbx 1", se string below.
... more specific, what do I use in my custom code from the string below?
--- HTML--
<div class="scolumn-pad">
<section id="contentbox" class="copy no_clone section-contentbox">
<div class="copy-pad">
<div class="hentry Contbx 1">
<div class="hentry-pad Contbx 1-pad entry_content" style="padding-top: 41px; padding-left: 11px;">
</div>
<div class="clear"></div>
--- CSS--
element.style { padding-left: 11px; padding-top: 41px;
}
.hentry .hentry-pad { padding:
}
.entry_content {
padding:
2. How do I change padding on all my contentboxes? They are named Contbx 1, Contbx 2 and so on.
Kind regards












