The following warnings occurred: | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
|
New theme (problem) - Printable Version +- GetSimple Support Forum (http://get-simple.info/forums) +-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3) +--- Forum: General Questions and Problems (http://get-simple.info/forums/forumdisplay.php?fid=16) +--- Thread: New theme (problem) (/showthread.php?tid=7655) |
New theme (problem) - Balistx - 2015-10-21 Hello! I'm developing a new theme, everything seems ok, but I have a problem. I can't set footer to bottom of the page. I know that many people don't like to read foreign code, but I ask you to help me please. Footer moves up and appears at the level of content. Code: <div id="header">Header image</div> RE: New theme (problem) - Timbow - 2015-10-21 (2015-10-21, 02:57:24)Balistx Wrote: Hello!If you type "make footer" into google then auto-complete gives you the top option "...stick to bottom", it is a very common problem. iirc youmake a container and give it height 100% then absolute position the footer div at the bottom,but I may have that wrong, we don't really teach css round here. RE: New theme (problem) - Balistx - 2015-10-21 thanks for respond. mb someone else will answer? RE: New theme (problem) - Frens - 2015-10-22 Hi, Something like the sample below , or you mean a Sticky Footer? Code: <!doctype html> RE: New theme (problem) - Tyblitz - 2015-10-26 CSS tricks provided a nice example of creating a sticky footer a while ago: it sticks to the bottom when the content is less than the window's height, and gets pushed down when it is more. |