Read the statement by Michael Teeuw here.
Move Module to corner
-
Did it work? I tried it aswell and have the problem, that i just adjust the left-margin?
(tried it with custom & main.css)Can someone help? :-)
-
@Patrick the correct css property is called margin-left not left-margin, maybe this was your mistake.
you can post your css here so we can have a look on it
-
@strawberry-3.141 sorry for my wrong explanation.
I just want to reduce the whole margin because my display is to small for weather + clock.
So i tried to reduce it with the tags:-
margin: xxx
-
margin-left: xxx in combination with margin-right: xxx
both didn’t work.
I had the problem that everything just moved to the left instead of providing more space.
So i had at the right a huge blank space which wasn’t my plan… (Check the attached picture)
Thank you for your help!
-
-
@Patrick I would try this
body { margin: 10px; position: absolute; height: calc(100% - 20px); width: calc(100% - 20px); }
-
@strawberry-3.141 Thank you! Now it works very well!
Don’t know why i didn’t thought about height & width before :D