~kosova/+junk/tuxfamily-twiki

« back to all changes in this revision

Viewing changes to foswiki/data/System/PatternSkinCssCookbookNoTopBar.txt

  • Committer: James Michael DuPont
  • Date: 2009-07-18 19:58:49 UTC
  • Revision ID: jamesmikedupont@gmail.com-20090718195849-vgbmaht2ys791uo2
added foswiki

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
%META:TOPICINFO{author="ProjectContributor" date="1130024123" format="1.1" version="1"}%
 
2
 
 
3
---+!! PatternSkinCssCookbook Recipe: Hide the top bar
 
4
 
 
5
*This recipe shows how to hide the top bar and to put the logo in the left bar.*
 
6
 
 
7
<div class="foswikiHelp">
 
8
This line loads the extra style definition:
 
9
<verbatim>
 
10
   * Set USERSTYLEURL=%ATTACHURLPATH%/notopbar.css
 
11
</verbatim>
 
12
You can write this line in %SYSTEMWEB%.DefaultPreferences, in %USERSWEB%.SitePreferences, in WebPreferences, in your user topic or on a single page.
 
13
</div>
 
14
 
 
15
Add the dynamic link to the logo image to the topic text:
 
16
<verbatim>
 
17
<style type="text/css" media="all">
 
18
#patternSideBar { background-image:url("%PUBURLPATH%/%WEB%/%WEBPREFSTOPIC%/logo.gif"); }
 
19
</style>
 
20
</verbatim>
 
21
<div class="foswikiHelp">
 
22
%ICON{info}% If you don't write this overloading style in a template and use an external =.css= file, you need to set the image to the absolute url:
 
23
<pre>
 
24
&lt;style type="text/css" media="all">
 
25
#patternSideBar { background-image:url("<nop>%PUBURLPATH%/<nop>%WEB%/<nop>%WEBPREFSTOPIC%/logo.gif"); }
 
26
&lt;/style>
 
27
</pre>
 
28
You can always write a =&lt;style>= in a topic - all current browsers support this - but the page won't validate as valid XHTML.
 
29
</div>
 
30
 
 
31
<style type="text/css" media="all">
 
32
#patternSideBar { background-image:url("%PUBURLPATH%/%WEB%/%WEBPREFSTOPIC%/logo.gif"); }
 
33
</style>
 
34
 
 
35
 
 
36
%META:FILEATTACHMENT{name="notopbar.css" attachment="notopbar.css" attr="" comment="" date="1130024123" path="notopbar.css" size="395" stream="notopbar.css" user="ProjectContributor" version="1"}%