You are here: Foswiki>System Web>Category>AdminDocumentationCategory>Skins>PatternSkin>PatternSkinCssCookbook (2024-12-23, UnknownUser)Edit Attach
Questions and answers on how to customize the default look of Foswiki for your own needs, using style sheets. For configuring page elements, see PatternSkinCustomization.
On this page:
PatternSkin uses 3 style sheets (attached to PatternSkinTheme):
When customizing your Foswiki installation, you can either choose to completely rewrite all css styles, or to selectively override some styles. The latter option is by far less time consuming, but all depends on your graphical wishes.
* Set FOSWIKI_LAYOUT_URL = %PUBURLPATH%/%SYSTEMWEB%/YourNewTopic/layout.css * Set FOSWIKI_STYLE_URL = %PUBURLPATH%/%SYSTEMWEB%/YourNewTopic/style.css * Set FOSWIKI_COLORS_URL = %PUBURLPATH%/%SYSTEMWEB%/YourNewTopic/colors.css
With CSS you cannot remove already defined classes, you can only add to it, or override existing styles.
Overriding default CSS is done with 3 preference settings: USERLAYOUTURL
, USERSTYLEURL
, USERCOLORSURL
.
USERXXXURL
preferences): * Set USERLAYOUTURL = %PUBURLPATH%/%SYSTEMWEB%/YourNewTopic/layout.css * Set USERSTYLEURL = %PUBURLPATH%/%SYSTEMWEB%/YourNewTopic/style.css * Set USERCOLORSURL = %PUBURLPATH%/%SYSTEMWEB%/YourNewTopic/colors.css
* Set USERSTYLEURL = %PUBURLPATH%/%SYSTEMWEB%/YourNewTopic/style.css
Instead of setting these preferences in System.DefaultPreferences or Main.SitePreferences, you can set these in your home topic, or in any other topic. Setting style URL preferences in:
User styles are always loaded after Foswiki styles.
The rest of this topic shows examples of small CSS changes.
See example at: PatternSkinCssCookbookNoLeftBar
See example at: PatternSkinCssCookbookSidebarToggle
See example at: PatternSkinCssCookbookFonts
This is the complete style definition to set the height of the top bar:
#patternTopBar, #patternTopBarContents { height:75px; /* top bar height; make room for header columns */ overflow:hidden; }
Change the number from 75px to your value.
PATTERNSKIN_THEME_VARIANT
to that topic attachment url using %PUBURL%/YourWebName/YourTopicName/your_theme_variant_file.css
Note: If using %WEBHEADERART% to customize the top bar, some #patternTopBarContents
CSS is expanded inline from templates/css.pattern.tmpl
. Override of some attributes, such as background color and repeat are not possible from the CSS files.
Edit | Attach | Print version | History: r1 | Backlinks | View wiki text | Edit wiki text | More topic actions
Topic revision: r1 - 2024-12-23, UnknownUser
Copyright © by the contributing authors. All material on this site is the property of the contributing authors.
Ideas, requests, problems regarding Foswiki? Send feedback