
![]() |
Show Changes |
![]() |
|
![]() |
Recent Changes |
![]() |
Subscriptions |
![]() |
Lost and Found |
![]() |
Find References |
![]() |
Rename |
![]() |
Administration Page |
| Search |
History
| 6/30/2008 12:45:27 PM |
| 207.35.224.2 |
| 6/30/2008 6:38:10 AM |
| 189.43.103.2 |
| 2/11/2008 7:31:13 AM |
| -66.78.112.75 |
| 8/19/2007 3:10:56 AM |
| -76.105.167.90 |
| 3/29/2006 3:45:07 PM |
| -209.139.220.77 |
![]() |
List all versions |
If you are an administrator of your FlexWiki site, you can change the visual appearance of your site by overriding the CSS styles used for the site. To do this, you need to add a key to your web.config file to indicate the CSS file to use for overrides.
For example:
<configuration>
<appSettings>
<add key="OverrideStylesheet" value="/override.css" />
This will cause all of the pages generated as part of the wiki site to include your override stylesheet after including the standard (wiki.css) file. This means that you redefine styles that are defined in wiki.css to create your own look for your site. This is particularly easy since you only need to specify the properties that you want to override.
For example, you could have a CSS file like this:
.Main
{
BACKGROUND: url(/watermark-mysite.jpeg) white fixed no-repeat center center;
border: solid 12px green;
}
.Sidebar
{
background: green;
}
This would set the border around your site to be green and add a custom watermark to the content pages.
To view some styles created by the user community look at our StyleSheetLibrary begun by MurrayRoke
A: Sounds like a nice suggestion for the SourceForgeTrackers