Hej folks,
I'm trying to understand how to change position of side-bar in sugarCube but that's just not possible for me...
From what i can see in SugarCube source code is that side bar belongs to
#ui-bar and i wanted to move it to right part(including line too)
But i just cannot understand this CSS and how to change default style...
Comments
Start with something like the following CSS: The hard part is reformating the other CSS elements like body and #passages as theses are what defines the overall page layout. So you will need to adjust their margins, paddings, borders, sizes, etc... until the page layout looks the way you want it.
Correction: Fixed value assigned to new left property based on TheMadExiles' comment.
PS: @greyelf: The value
unset
is not a valid CSS property value. For most properties, their default values are usually one of:auto
,inherit
,none
, or0
. In the case of theleft
property,auto
is the appropriate value.[EDIT]: Updated the styles a bit.
My mistake, I see now that only Firefox has implemented the unset recommendation so far.
unset
to be a truly usable feature sometime by the end of the decade (maybe).That's very cool thank you