I want a background
How do i get a background
2
people have this question
I have this question, too!
Tell me when someone answers.
The more people who ask this question, the more it gets noticed.
The more people who ask this question, the more it gets noticed.
Create a customer community for your own organization
Plans starting at $19/month
-
Inappropriate?Hi, you can add a background to your wiki by using CSS. Wiki-wide CSS requires PBwiki 1.0 wikis to have premium CSS support.The CSS code will look something like:
#displaycontent { background: url(/f/mybackground.jpg); }
To do a background for an individual page, you could insert an HTML plugin with the code:
<style>
#displaycontent { background: url(/f/mybackground.jpg); }
</style>
We have not opened up custom CSS for PBwiki 2.0 yet.
-
Inappropriate?How to do this on v2? Can I just add code to the CSS & Javascript under advance settings?
I want to change the background of our wiki to an image. What would the code be I need to put in? -
Inappropriate?Hi George,
If you have a premium v2 wiki, you may be able to use some CSS code like this:
< style type="text/css" >
body
{
background-image:
url('/f/960554_med.jpg');
background-repeat: no-repeat;
background-attachment:fixed;
background-position:center;
}
< /style >
Note: I added spaces next to the < and > to display it here.
-
Inappropriate?Hi Clif,
That worked perfectly; thanks a lot. I modified it to repeat and tile. Now it feels like Christmas. :)
George
Loading Profile...





