Um, I'm familiar with custom sections, I've done them a couple times, but reacently, I've had this problem where my custom sections randomly disappear and never return. I used your coding and they didn't even come up, I didn't alter the coding in anyway except to change the height, width, ect. So is there any way to fix this, or am I stuck?
Um, I'm familiar with custom sections, I've done them a couple times, but reacently, I've had this problem where my custom sections randomly disappear and never return. I used your coding and they didn't even come up, I didn't alter the coding in anyway except to change the height, width, ect. So is there any way to fix this, or am I stuck?
Use "left" instead of "margin-left" and "top" instead of "margin-top". If that doesn't work, adjust the values that you have, because they may be too big and pushing the sections off the page.
Also, you definitely need to remove the position: absolute; from the #about coding. You cannot have absolute positioning and overflows at the same time on the #about if you want custom sections; that will also cause your custom sections to not appear.
You also might want to read up on overflows, because you are not using them properly. There is no need to declare both overflow: scroll; and overflow: auto;. Overflow scroll means that the section will start to scroll when it passes its maximum height, and overflow auto means that it will scroll automatically. Therefore, there is no specific effect when you declare both; it just has no purpose and sits there and can possibly cause problems.