Skip to topic | Skip to bottom
Home
ephedrine diet pill [[]] index ephedrine [[]]
TWiki
TWiki.PatternSkinCustomizationr1.3 - 28 Aug 2004 - 22:59 - ArthurClemens?topic end

Start of topic | Skip to actions

Customization of PatternSkin

This page describes ways to change the layout, fonts and colors of PatternSkin.

Your own TWiki look

You can easily create your own TWiki look by attaching modified css files to your home page:

  • If you want to change the layout of the page, download layout.css from PatternSkin
  • If you want to change the spacing or colors, download style.css from PatternSkin
  • modify the CSS in either style sheet, using tips from this page
  • attach your modified layout.css and/or style.css to your home page
  • as shown below, add the USERLAYOUTURL and USERSTYLEURL settings to your home page
   * Personal TWiki.PatternSkin CSS settings
      * Set USERLAYOUTURL = %PUBURL%/%MAINWEB%/%WIKINAME%/layout.css
      * Set USERSTYLEURL = %PUBURL%/%MAINWEB%/%WIKINAME%/style.css

Screen parts

The PatternSkin view template uses four screen parts:

  • The topic part - contains besides the topic content: action buttons, form table, attachment table, topic info
  • Top bar - used for a logo, contains Go box
  • Left bar - site and web navigation, contains a personal link block; may contain a Go box
  • Bottom bar - copyright, disclaimer

These parts are dynamically included topics:

  • Top bar: WebTopBar
  • Left bar: included topic WebLeftBar (one WebLeftBar topic per web)
    • Personal links block: Main.%USERNAME%LeftBar. Your own personal leftbar: Main.guestLeftBar
  • Bottom bar: included topic WebBottomBar

Top bar

The top bar is mainly used as branding space. To change the screen room for the logo, see below, Customizing the logo.

Left bar

The menu items are css-formatted bullet lists. So in WebLeftBar you write:

   * *Group*
   * [[SomeTopic][Link 1]]
   * [[AnotherTopic][Link 2]]
   * [[ThirdTopic][Link 3]]

The left bar may contain a Go box instead of the top bar. Use:

   * <input type="text" name="topic" size="16" />

The personal left bar block is formatted like the rest of the left bar.

Putting the left bar at the right

If you have a low screen resolution of say, 640 by 480 pixels, it can be useful to put the left bar "out of the way", at the right side of the page - at the cost of a horizontal scroll bar to access the left (now right) bar. This CSS does this:

Add this to layout.css:
.twikiMain {
   margin-left:0px;
}
.twikiLeftBar {
   margin-left:100%;
}
.twikiBottomBar {
   margin-left:1em;
   margin-right:0;
   padding:0;
}
Add this to style.css:
.twikiMain {
   padding-left:1em;
   padding-right:1em;
}
.twikiBottomBarContents {
   padding-left:0em;
}

This CSS is also attached to this topic, LowRes.css. To use this style, add this to your home page:

   * Personal TWiki.PatternSkin CSS settings
      * Set USERLAYOUTURL = %PUBURL%/%SYSTEMWEB%/PatternSkinCustomization/LowRes.css

Bottom bar

The bottom bar contains the copyright disclaimer, but may contain other information, perhaps a web list.

Customizing the logo

The top bar is 60 pixels high, and has a padding of 5 pixels on top, bottom and left, so the logo should be 50 pixels high. If your logo image has a different size, you can either alter the padding in style.css (.twikiTopBarContents) or change the top bar height in layout.css (look for the comment setting the height of the top bar).

You can also choose to set a background image for the top bar. In style.css, add this to .twikiTopBar:

   background-position:top left;
   background-attachment:fixed;
   background-repeat:no-repeat;
   background-image:url(http://absolute_path_to_your_image);
and set the correct image file path.

Fonts

Font style

Font styles are defined in style.css in these places:

html body {
   font-family:"Lucida Grande", verdana, lucida, helvetica, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
   font-family:"Lucida Grande", helvetica, lucida, verdana, sans-serif;
}
textarea {
   font-family:monospace;
}
input, select {
   font-family:verdana,arial,sans-serif;
}
.twikiSeparator {
   font-family:Arial,sans-serif;
}
.twikiEditPage .twikiSig input {
   font-family:monospace;
}

Font size

Font sizes in PatternSkin are scalable. This means that even on Windows Explorer, the text in the browser can scale with the user settings (in contrast to many sites where texts have a fixes pixel size, these cannot be changed by the user).

Scalable text is a big accessibility asset. If you notwithstanding want to have a fixed font, or if you want to set the default size smaller or bigger, the easiest way is to make a new entry for body, below the 2 other entries:

html body {
   ... (keep)
}
html>body {
   ... (keep)   
}
html body {
   font-size:11px;
}

Colors

                                                

To create a customised palette of colors, see PatternSkinPalette.

Tables

Tables in topic text

If you have TablePlugin installed, tables in topics take on the properties from TABLEATTRIBUTES. Without TablePlugin (if not installed, or disabled in TWikiPreferences under DISABLEDPLUGINS), the tables have a default appearance that is hardcoded in Render.pm. Styles of topic text tables are not set in a style sheet. If you want to have control over the design of tables, for instance if you work with a style guide, you should add table styles under .twikiTopic. See for an example below.

Topic text table example

This is an example css to give tables in topic text a similar appearance. This will override settings in TablePlugin. This code should be added below the other .twikiTopic code in style.css:

.twikiTopic table {
   border-collapse:collapse;
   padding:0px;
   border-spacing:0px;
   empty-cells:show;
   border:0px;
}
.twikiTopic table th {
   background-color:#ccc;
   padding:0.5em 1em;
}
.twikiTopic table td {
   border:1px solid #eee;
}
/* override hardcoded font color */
.twikiTopic table font {
   color:#1e5bbd;
}
.twikiTopic table th a:link,
.twikiTopic table th a:visited {
   color:#1e5bbd;
   text-decoration:none;
}
/* don't show hover background color because we have a table header background */
.twikiTopic table th a:hover {
   background-color:transparent;
   text-decoration:underline;
   border-width:1px;
}
/* no underline if a sort indicator (line) is displayed */
.twikiTopic table th.twikiSortedDescendingCol a:hover,
.twikiTopic table th.twikiSortedAscendingCol a:hover {
   text-decoration:none;
}
/* hide sort icons */
.twikiTopic table th img,
.twikiTopic table th a:link img,
.twikiTopic table th a:visited img {
   display:none;
}

Attachment table, Form table

The appearance of the form table and the attachment table are set in style.css under .twikiForm and .twikiAttachments. Text in these tables is set to wrap, so often the dates are wrapped to two lines. If you prefer to have text on one line and are not disturbed by an extra wide attachment table (or when you screen resolution is big enough), add this code to .twikiAttachments td, .twikiForm td {:

   white-space:nowrap;

Other templates

Other templates than view use the style .twikiVersatileTable for, as the name says, tables with versatile functions. Versatile tables appear a little diffent in each template page (differences are created using multiple classes). Versatile tables are mostly used to format forms to highlight important parts and to dim less important parts. See style.css for specific settings for each template.

-- TWiki:Main.ArthurClemens - 28 Aug 2004
to top

I Attachment sort Action Size Date Who Comment
LowRes.css manage 0.3 K 28 Aug 2004 - 23:00 ArthurClemens? CSS to put the left bar at the right, with horizontal scroll bar

You are here: TWiki > PatternSkinCustomization

to top

Copyright © 1999-2005 by the contributing authors. play online slots online slots slot machine free slot online slot play slot slot game free slot game free online slot free slot machine slot car antique slot machine play free slot progressive slot play free slot machine free slot no download video slot free slot machine game slim slot slot machine game online slot machine bonus slot free online slot game sim slot play slot machine play free slot game slot machine secret video slot machine free video slot machine play online slots online slots slot machine free slot online slot play slot slot game free slot game free online slot free slot machine slot car antique slot machine play free slot progressive slot play free slot machine free slot no download video slot free slot machine game slim slot slot machine game online slot machine bonus slot free online slot game sim slot play slot machine play free slot game slot machine secret video slot machine free video slot machine play online poker free online poker online poker strip poker poker chips party poker play poker video poker poker game free poker poker room internet poker online poker game free online poker texas holdem poker online poker rooms sex chat online sex chat free sex chat sex chat rooms live sex chat free sex chat rooms live sex cam chat free live sex chat sex video chat online dating services dating services dating site online dating internet dating free dating adult dating online dating service free online dating free dating site dating web site gay dating adult dating services online asian dating sex dating lesbian dating dating personals free dating services swingers adult swingers swinger club swingers sex swinger party mature swingers swinger story buy vibrator onlinr rabbit vibrator dildo vibrator anal vibrator vibrator orgasm clitoral vibrator sex toys sex vibrator sex toy vibrator lesbian vibrator escort services escort services male escort gay escort las vegas escort female escort toronto escort sexy lingerie sexy plus size lingerie sexy lingerie model womens sexy lingerie hot sexy lingerie sexy lingerie pic sex toy adult sex toy homemade sex toy sex toy party sex toy for man woman sex toy gay sex toy anal sex toy play online poker online poker strip poker poker chips party poker play poker video poker poker game free poker poker room internet poker online poker game free online poker texas holdem poker online poker rooms swingers adult swingers swinger club swingers sex swinger party mature swingers swinger story play online slots online slots slot machine free slot online slot play slot slot game free slot game free online slot free slot machine slot car antique slot machine play free slot progressive slot play free slot machine free slot no download video slot free slot machine game slim slot slot machine game online slot machine bonus slot free online slot game sim slot play slot machine play free slot game slot machine secret video slot machine free video slot machine vibrator rabbit vibrator dildo vibrator anal vibrator vibrator orgasm clitoral vibrator sex toys sex vibrator sex toy vibrator lesbian vibrator adult swingers swinger club swingers sex swinger party mature swingers swinger story amateur swingers swinger pic vibrator rabbit vibrator dildo vibrator anal vibrator vibrator orgasm clitoral vibrator sex toys sex vibrator sex toy vibrator lesbian vibrator play online slots slot machine free slot online slot play slot slot game free slot game free online slot free slot machine slot car antique slot machine play free slot progressive slot play free slot machine free slot no download video slot free slot machine game slim slot slot machine game online slot machine bonus slot free online slot game sim slot play slot machine play free slot game slot machine secret video slot machine free video slot machine play online poker online poker strip poker poker chips party poker play poker play video poker poker game play free poker poker room internet poker online poker game free online poker texas holdem poker online poker rooms texas hold em poker play online poker play holdem poker online free poker game party poker bonus free strip poker online video poker play online slots online slots slot machine free slot online slot play slot slot game free slot game free online slot free slot machine slot car antique slot machine play free slot progressive slot play free slot machine free slot no download video slot free slot machine game slim slot slot machine game online slot machine bonus slot free online slot game sim slot play slot machine play free slot game slot machine secret video slot machine free video slot machine