Creating Custom Sections
All of the CONTENT for your custom section goes in your My Gaia --> Account --> About area.
Each new section is wrapped in either OL (ordered list) or UL (unordered list tags), it doesn't make a big difference which you use.
If you have multiple custom sections it begins to get confusing as you must have them layered inside each other. But as long as you can keep track you won't have any problems.
About Text:
[list=1]
1st custom section.
[list=1]
2nd custom section.
[list=1]
3rd custom section.
[/list]
[/list]
[/list]
Make sure to end all of your sections. So if you have three custom sections you should have three "/list" tags.
Code on THEME OVERRIDE:
#about ol {position: absolute; top: 0px; left: 0px; }
#about ol ol {position: absolute; top: 0px; left: 0px; }
#about ol ol ol {position: absolute; top: 0px; left: 0px; }
So the first one corresponds to your first section, the second to your second, and third to third and so on. Remember you can also apply all the other related codes to it such as background images, colors, fonts, etc.
Now from what I understand ONLY the last section can have a scrollbar in it. So, let's say you want your main ABOUT section to scroll, but don't care about the custom sections scrolling. In order for your about content to scroll you have to actually make it into a custom section. The LAST custom section to be exact.