The display of the section collection can be seen on your blogger layout, which acts as a container for widgets or gadgets. However, sometimes there are some sections that are not placed properly for each blog owner.
To add a widget or gadget is very easy, just click "Add Gadget" or if you use English preferences "Add A Gadget link". But what if you want to add the "Add Button Section"? this case is not as easy as adding a widget / gadget, at least you need to master CSS and HTML first.
Adding Section Class ( Add a gadget link / Add Gadget ) Blogger Layout
Okay, here we will show you how to add one "Add Gadget Button Section", by adding a section tag in the HTML template. Please open the template menu >> edit HTML, and add the following code:
<!-- New widgets container Start -->
<b:section class='NewContainer' id='NewContainer'/>
<!-- New widgets container End -->
You are free to determine the id and class name.
In this tutorial we will add a SitemapFooter section for the Posts Label place.
1. Backup the Template first
By opening Template >> Backup / Restore >> Download Template.
2. Inspect Elemen
To find out where the code should be added, we first inspect the adjacent elements. In this tutorial, we take an example of adjacent elements:
<div id='credit-wrapper'>
3. Adding Section Elements
Open Template >> Edit HTML >> CTRL+F >> Copy and paste the inspection code above to help search >> Enter.
Next, copy and paste the code "New widget container", and place it right above the "credit-wrapper" element.
4. Save Template
Click Save Template.
5. See the Results
Back to the Layout menu, here are the results:
Adding Blogger Layout Sections
Now you can add widgets or gadgets with the new container. In this tutorial we add the labels widget. You can see it HERE. (scroll down).
6. Arrange Containers
To customize the container/section that we have added, simply follow the CSS rules, you can add the selector below:
#NewContainer {
/* add styling declarations here */
}
And place it above the following closing tag:
]]></b:skin>
Good luck!!