Strommen
Member
Posted 2 years ago #
Hi!
I have created my own theme and i see now when adding content there actually is no scrollbar suddenly. Dont know what i have done to cause it. I know it must be my theme cause when i activate another it works perfectly with scroll.
http://www.shadowhorizon.com
Click on an articles username to get up the profile for example. You see you cannot scroll down :(
Any ideas on what has caused this?
default.css
the 'position: fixed;' is the reason for 'no scrolbar':
/* > Container
-------------------------------------------------------------- */
div#container {
position: fixed;
width: 999px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-right: 1px solid #e0e0e0;
border-left: 1px solid #e0e0e0;
border-bottom: 1px solid #e0e0e0;
background: #fff;
}
A more experienced CSSer might perhaps swing by, but it looks like it's the:
position: fixed;
in:
div#container
in your default.css file:
_inc/css/default.css
(edit: Just seen alchymyths reply. I'm getting better at CSS! Woo!)
Strommen
Member
Posted 2 years ago #
Ah ofcourse. Didnt know that position: fixed would cause that. Changed it to positon: relative now. That did the trick :)
Thanks guys, much appreciated. Owe you both :)