(C.11) Widgets panel :/*Panneau_Widgets-------------------------------------------------*/
.widgetleft:hover {padding-left: 10px; padding-right: 10px; width: Xpx;}
.widgetleft {background: #color url("header_background_image_url") top right repeat-y; min-width: Ypx;}
.widgetleft:hover {background: #color url(" header_background_image_url") top right repeat-y; }
X is the panel width when it is open. It must to be at least 20px more than you widgets width.
Y is the panel width when it is closed.
The italic settings are the background properties.
The underlined settings are the background properties.In brown :
- Replace
#color by the background color you want the area to have.
In green :- For a non-repeating image, write
no-repeat- For a vertical-repeating image, write
repeat-y- For a horizontal-repeating image, write
repeat-x- for a boot-repeating image, write
repeatIn orange :- For a top-aligned background, write
top- For a middle-aligned background, write
center- For a bottom-aligner background, write
bottomIn red :- For a left-aligned background, write
left- For a center-aligned background, write
center- For a right-aligned background, write
rightTo hide the panel, add this to your CSS stylesheet :/*Suppression_Panneau_Widgets-------------------------------------------------*/
.widgetleft {display: none; }