<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
      <title>Campaign Portal Building Discussions on Obsidian Portal Community Forums</title>
      <link>https://forum.obsidianportal.com/categories/campaign-portal-building/p29/feed.rss</link>
      <pubDate>Sat, 19 Sep 2026 07:46:40 +0000</pubDate>
         <description>Campaign Portal Building Discussions on Obsidian Portal Community Forums</description>
   <language>en-CA</language>
   <atom:link href="https://forum.obsidianportal.com/categories/campaign-portal-building/p29/feed.rss" rel="self" type="application/rss+xml" />
   <item>
      <title>Item images</title>
      <link>https://forum.obsidianportal.com/discussion/3622/item-images</link>
      <pubDate>Wed, 26 Feb 2014 08:52:34 +0000</pubDate>
      <dc:creator>TonyPullen</dc:creator>
      <guid isPermaLink="false">3622@/discussions</guid>
      <description><![CDATA[Hi,<br />
<br />
Still getting used to Obsidian Portal and slowly building up my RotRL campaign.<br />
<br />
I'm trying to get some mileage out of the (depreciated) items section.<br />
<br />
Can anyone tell me if I can allocate default icons for item types as per the dropdown list.<br />
I've tried uploading an icon as the item-image but I have to reload the icon for each item - even if I have 3 daggers, I have to upload 3 images. What I want is a default dagger image.<br />
I'm not concerned too much about automation (like having OP select the icon automatically for me) but I don't want to have to upload duplicate images. I'd rather use an image I have already uploaded.<br />
<br />
TIA]]></description>
   </item>
   <item>
      <title>Adding the Tag Library to the Sidebar</title>
      <link>https://forum.obsidianportal.com/discussion/3472/adding-the-tag-library-to-the-sidebar</link>
      <pubDate>Wed, 06 Nov 2013 15:41:08 +0000</pubDate>
      <dc:creator>Ironeyes</dc:creator>
      <guid isPermaLink="false">3472@/discussions</guid>
      <description><![CDATA[Hi,<br />
<br />
I'm not sure whether this is possible at all, but I'd like to add the tag library (All Tags) to the sidebar of each page. Is there a way to do that? I believe the CSS id is tag-library, if that helps. I'm very new to CSS and am still trying to figure out what can and can't be done with it.]]></description>
   </item>
   <item>
      <title>Player Editing</title>
      <link>https://forum.obsidianportal.com/discussion/3619/player-editing</link>
      <pubDate>Tue, 25 Feb 2014 03:18:16 +0000</pubDate>
      <dc:creator>TonyPullen</dc:creator>
      <guid isPermaLink="false">3619@/discussions</guid>
      <description><![CDATA[My players are seeimingly unable to edit any page unless they created it first.<br />
<br />
Is this standard?<br />
<br />
For example: it means that the "treasure log" wiki page I (as DM) created can only be updated by me!<br />
<br />
None of them seem to be ab;le to find the edit icon when they log in.<br />
<br />
How do I see what they see?<br />
<br />
TIA]]></description>
   </item>
   <item>
      <title>CSS character limit</title>
      <link>https://forum.obsidianportal.com/discussion/3612/css-character-limit</link>
      <pubDate>Thu, 20 Feb 2014 11:54:30 +0000</pubDate>
      <dc:creator>TonyPullen</dc:creator>
      <guid isPermaLink="false">3612@/discussions</guid>
      <description><![CDATA[Is there a limit to the amount of CSS I can have in the site custom CSS? I am getting my 'code' truncated every time I save it!<br />
<br />
TIA]]></description>
   </item>
   <item>
      <title>Some CSS and HTML code (continuation of PM)</title>
      <link>https://forum.obsidianportal.com/discussion/3615/some-css-and-html-code-continuation-of-pm</link>
      <pubDate>Fri, 21 Feb 2014 00:38:46 +0000</pubDate>
      <dc:creator>Basileus</dc:creator>
      <guid isPermaLink="false">3615@/discussions</guid>
      <description><![CDATA[This thread is just a continuation of a response to some private messaging - the private message system was eating some of the code I was trying to show in my replies.<br />
<br />
---<br />
<br />
First, the soft bordered, "glowing" boxes such as seen here on the "front page":https://outremer.obsidianportal.com/. These are accomplished with a bit of HTML - they are simply divs with the following code:<br />
<br />
@<br />
Normal content with Textile styling goes here.<br />
@<br />
<br />
The important properties that accomplish that appearance are: the "background-color:rgba" with the fourth value set to 0.5 (sets the alpha channel to half transparency), and the "box-shadow" property which is used here to create two blurry borders (one inset and one outside) rather than a hard border. I don't mind using HTML on my front page but try to avoid using it throughout the wiki because it can't be updated across the whole campaign at once.<br />
<br />
They are also surrounded by horizontal rules, which are not part of that object but contribute to the appearance. On the page horizontal rules can be created simply with Textile:<br />
<br />
@---@<br />
<br />
or HTML:<br />
<br />
@@<br />
<br />
However, I have customized the horizontal rules in my campaign CSS as follows to make them glowy/blurry as well (the default horizontal rule is awful) and change the behavior of how they interact with other content a bit:<br />
<br />
@/* HORIZONTAL RULE COLOR AND STYLE */<br />
hr {clear:none; color: transparent; background-color: transparent; border: 1px solid transparent; box-shadow: 0em 0em 1em lightskyblue;}@<br />
<br />
---<br />
<br />
Second, the borderless tables containing all the links such as shown on the "main wiki hub":https://outremer.obsidianportal.com/wikis/main-page or slightly differently "here":https://outremer.obsidianportal.com/wikis/races. These are a mixture of some campaign CSS and in-page table formatting. The CSS relevant to tables is below (the "nth-child" trick was courtesy of another forum member during the post-Reforge scramble, but I can't recall who to properly give credit):<br />
<br />
@/* TABLE SETTINGS */ <br />
table {margin: 0px auto;} <br />
.campaign-public-layout th {font-size: 120%; font-weight: bold; font-family:'Jura';} <br />
#content table {background-color: transparent; border-style: none;} <br />
#content tr:nth-child(even) {background-color: transparent;}@<br />
<br />
And the on-page formatting is something like:<br />
<br />
@<br />
table{width: 100%; text-align:center; font-size: 120%;}.<br />
|_{width:25%}. Column Header 1|_{width:25%}. Column Header 2|_{width:25%}. Column Header 3|_{width:25%}. Column Header 4|<br />
|[[Link 1]]|[[Link 2]]|[[Link3]]|[[Link 4]]|@<br />
<br />
---<br />
<br />
EDIT: It occurred to me after all that, that you may have just been asking about the quotes (such as seen at the top of the front page). These are far simpler. On page is just the blockquote function, which in Textile formatting is just:<br />
<br />
@bq. Content goes here.@<br />
<br />
And styled in campaign CSS with:<br />
<br />
@/* BLOCKQUOTE STYLING */<br />
.campaign-public-layout blockquote {border-left: transparent; font-style: italic; font-family: 'Jura'; box-shadow: inset 2em 0em 1em -2em lightskyblue, -1em 0em 1em -1em aliceblue; }<br />
.campaign-public-layout blockquote p {color: dimgray;}@<br />
<br />
The relevant part is setting the default blockquote styling (the hard line using "border-left") to transparent, and then using the "box-shadow" property as above and offsetting each shadow to the side so it only shows on the left edge.]]></description>
   </item>
   <item>
      <title>One of my players NEVER sheaths his weapon, should I allow it?</title>
      <link>https://forum.obsidianportal.com/discussion/3586/one-of-my-players-never-sheaths-his-weapon-should-i-allow-it</link>
      <pubDate>Mon, 27 Jan 2014 12:01:01 +0000</pubDate>
      <dc:creator>oldmanofdoom</dc:creator>
      <guid isPermaLink="false">3586@/discussions</guid>
      <description><![CDATA[One of my players has a swordmage and refuses to sheath his longsword. He sleeps with it by his side, carries it all the time, talks to people while holding it, etc. The only times he ever puts it away is when he needs both hands for something. I already told him it doesn't make any sense, it's dangerous and makes his look like a psychopath and that it is probably a great hassle to be doing all sorts of stuff while holding it, but he refuses to listen. Should I just let him do as he wishes, or do you think I should insist? He doesn't want to use the minor action to take it out, and complains he'll lose his AC bonus if he's not holding it. I told him to invest in his Percepction so he won't be taken by surprise and is able to pull it out if he senses danger, but he doesn't want to. What should I do?]]></description>
   </item>
   <item>
      <title>Help me tweak Prince of Hell ED?</title>
      <link>https://forum.obsidianportal.com/discussion/3613/help-me-tweak-prince-of-hell-ed</link>
      <pubDate>Thu, 20 Feb 2014 15:09:59 +0000</pubDate>
      <dc:creator>oldmanofdoom</dc:creator>
      <guid isPermaLink="false">3613@/discussions</guid>
      <description><![CDATA[I recently talked to my players about power gaming and how I wanted them to tone it down a notch and go more towards flavor and, well, they took it surprisingly well. So well, in fact, that one of my players picked an ED which is less than useful for his character IMO. Now, I really like  interesting characters, as I believe that is what a roleplaying game should be about, but I also like characters to be powerful. All the other players already picked their ED (they're lv 12, but I'd rather they plan ahead so the ED can be introduced, storywise) and they are just fine, but he decided to go Prince of Hell. Now the thing is, he's a tiefling and likes his race's past to be a prominent part of his character's life and personality (something for which the ED does a good job) but he's also a bard. Now, the ED doesn't really do much for him besides raising his CHA by 2 points and giving him darkvision. Sure, the resist fire's nice and so is the teleport (even if it IS lv 30) but the 24th level feature goes to waste and the 26th utility is just plain awful. I want him to take the ED because he likes it, but I don't want this to make him underpowered compared to the rest. He was one of the most powergame-ish of the players, and I know he'll pick it because I said to go for flavor. Do you know of any way I could tweak the ED without making it too powerful but making it a more solid choice at the same time? I was thinking to let the minions be his level so their stats go up as the PCs gain levels, and giving them resist 20 all to protect them from auras (I like auras), so my main concern is the 24th level feature. Any thoughts on this? Are there perhaps feats or items he could use to make the ED more useful instead of modifying it?]]></description>
   </item>
   <item>
      <title>Help with Character Page</title>
      <link>https://forum.obsidianportal.com/discussion/3610/help-with-character-page</link>
      <pubDate>Wed, 19 Feb 2014 19:12:01 +0000</pubDate>
      <dc:creator>kaine1972</dc:creator>
      <guid isPermaLink="false">3610@/discussions</guid>
      <description><![CDATA[I'm just now starting to play around with CSS and I'm having an issue with the Character listing.  I want the background to be transparent (got that to work) but need to change the coloring on the character name and description from gray to something a bit brighter (white or gold).  Just can't figure out for the life of me how to get it done.  Any suggestions / help would be greatly appreciated.<br />
<br />
https://metal.obsidianportal.com/characters]]></description>
   </item>
   <item>
      <title>Character Portrait Preview</title>
      <link>https://forum.obsidianportal.com/discussion/3607/character-portrait-preview</link>
      <pubDate>Sun, 16 Feb 2014 09:09:41 +0000</pubDate>
      <dc:creator>WolfLord</dc:creator>
      <guid isPermaLink="false">3607@/discussions</guid>
      <description><![CDATA[Hey guys! I was wondering if anyone knew code that would make the character portraits of the PC's that appear on the right hand side of the home page larger. Cheers!<br />
<br />
"Age of Heroes":https://heroes-of-hellas.obsidianportal.com/<br />
"Avatar: Conquest of the Imperial Order":https://avatar_adventures.obsidianportal.com/<br />
"COTM November 2011":http://blog.obsidianportal.com/november-11-campaign-of-the-month-avatar-conquest-of-the-imperial-order/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=november-11-campaign-of-the-month-avatar-conquest-of-the-imperial-order]]></description>
   </item>
   <item>
      <title>How-to Print Items</title>
      <link>https://forum.obsidianportal.com/discussion/3602/how-to-print-items</link>
      <pubDate>Sat, 08 Feb 2014 21:53:03 +0000</pubDate>
      <dc:creator>paBroyles</dc:creator>
      <guid isPermaLink="false">3602@/discussions</guid>
      <description><![CDATA[Can anyone recommend how to print an item without 2 pages of gibberish of headers, bullets of each tab (wiki, main page, items, map, etc); I just want a clean print of the item image and crunch and bio?]]></description>
   </item>
   <item>
      <title>Music Embed and Autoplay</title>
      <link>https://forum.obsidianportal.com/discussion/3601/music-embed-and-autoplay</link>
      <pubDate>Sat, 08 Feb 2014 20:43:50 +0000</pubDate>
      <dc:creator>Grakarg</dc:creator>
      <guid isPermaLink="false">3601@/discussions</guid>
      <description><![CDATA[I'm trying to use the Media Embed feature and need some input.<br />
I can put in the link to the soundcloud item I want to use just fine, no issues.<br />
<br />
But how do I get the music to autoplay?<br />
How do I keep the embed from showing a gigantic frame and button to click? (that of course clashes with the rest of the imagery of the campaign site...)<br />
Are there any other helpful tips/tricks?<br />
<br />
Thanks for any help or advice you can provide on embedding media!]]></description>
   </item>
   <item>
      <title>Having problems loading images or maps with Safari</title>
      <link>https://forum.obsidianportal.com/discussion/3600/having-problems-loading-images-or-maps-with-safari</link>
      <pubDate>Fri, 07 Feb 2014 21:32:03 +0000</pubDate>
      <dc:creator>optimus_mush</dc:creator>
      <guid isPermaLink="false">3600@/discussions</guid>
      <description><![CDATA[Hey, everyone.  Since the reforge I haven't been able to load images or maps using Safari.  In both instances a message states that my browser doesn't support drag and drop so I'll have to use the older manual select and upload option.  The problem is, every time I try to do so it fails.  Short of downloading another browser, is there anyone out there who has a tip for how I can get around this?]]></description>
   </item>
   <item>
      <title>Problem with the main content area positionning</title>
      <link>https://forum.obsidianportal.com/discussion/3597/problem-with-the-main-content-area-positionning</link>
      <pubDate>Wed, 05 Feb 2014 04:06:36 +0000</pubDate>
      <dc:creator>Tristelune</dc:creator>
      <guid isPermaLink="false">3597@/discussions</guid>
      <description><![CDATA[Hi all,<br />
<br />
I have trouble with the positioning of the main content area on my campaign website.<br />
On this page (https://black-crusade-stars-of-chaos.obsidianportal.com/wikis/main-page), the main content is completely on the right side of the screen, instead of the middle.<br />
Yet, on other pages, such as:<br />
https://black-crusade-stars-of-chaos.obsidianportal.com/wikis/vaisseau-sovereign-venture<br />
https://black-crusade-stars-of-chaos.obsidianportal.com/characters/morgiana-haarlock-la-reine-sanglante<br />
the main content is properly positioned at the center of the page.<br />
What should i do to make the main content of my main wiki page be centered in the screen?<br />
<br />
Also, i would like to fix the navbar, using something like:<br />
/*Fixed Navbar and hide text*/<br />
#campaign-nav {position:fixed !important; }<br />
<br />
But when i do that, all the main content is positioned on the left border of the screen on every pages. Any idea how i could fix that?<br />
<br />
I'm clearly a newbie when it comes to css and all, i tried to search the forum, but couldn't find any answer that my limited skills could comprehend. So, any tip you could give me would be most welcomed. Thank you :)]]></description>
   </item>
   <item>
      <title>Youtube autoplay feature</title>
      <link>https://forum.obsidianportal.com/discussion/3595/youtube-autoplay-feature</link>
      <pubDate>Tue, 04 Feb 2014 10:34:13 +0000</pubDate>
      <dc:creator>Macchiato</dc:creator>
      <guid isPermaLink="false">3595@/discussions</guid>
      <description><![CDATA[Hi guys,<br />
I've been using the youtube autoplay feature for a while now, usually with the following code:<br />
<br />
<br />
<br />
All of a sudden the autoplay feature won't work anymore. The videos are there, they just don't start (you gotta click on the play button, which i wanted to avoid by using autoplay...). Any help would be greatly appreciated!]]></description>
   </item>
   <item>
      <title>Styling dashboard, settings page, etc</title>
      <link>https://forum.obsidianportal.com/discussion/3594/styling-dashboard-settings-page-etc</link>
      <pubDate>Mon, 03 Feb 2014 22:17:09 +0000</pubDate>
      <dc:creator>Savannah</dc:creator>
      <guid isPermaLink="false">3594@/discussions</guid>
      <description><![CDATA[Post-Reforge, I find I mentally separate my campaign wiki into 'public' (wiki pages, adventure logs, maps, etc) and 'private' (dashboard, forums, settings, etc) sections.  I'm able to do what I want with my public pages, with (almost) no problems.  However, I'm having a terrible time dealing with the private pages.<br />
<br />
On one of my heavily-styled wikis, I pretty much just threw a grey background on the whole thing and called it a day.  (Campaign "here":https://ageofworms-ap.obsidianportal.com/, screenshot of dashboard "here":https://db4sgowjqfwig.cloudfront.net/assets/292159/AoW_dashboard.jpg?1391493502).<br />
<br />
However, on my newest experiment, I'd really like to take the get the private sections looking as much as possible like the public ones.  I'm still messing around with it, but "this is the look I'm going for":https://yet-another-adventurers-guild.obsidianportal.com/wikis/main-page.  Unfortunately, things are way too wide in my private sections ("screenshot here":https://db4sgowjqfwig.cloudfront.net/assets/292160/AG_dashboard.jpg?1391494058).  This seems to be because #content goes to the very edge of the screen in the private sections, while it does not on the public sections.  I'm also finding that the left sidebar behaves quite differently on private pages than public pages.<br />
<br />
In conclusion, I'm wondering if a) anyone has any suggestions for my situation with the second campaign, and b) what other people with extensive formatting have done with their private sections (since my usual tactic of snooping on people's campaigns is obviously not working...).]]></description>
   </item>
   <item>
      <title>can I use other language?</title>
      <link>https://forum.obsidianportal.com/discussion/985/can-i-use-other-language</link>
      <pubDate>Fri, 18 Sep 2009 22:46:24 +0000</pubDate>
      <dc:creator>Nolinquisitor</dc:creator>
      <guid isPermaLink="false">985@/discussions</guid>
      <description><![CDATA[]]></description>
   </item>
   <item>
      <title>Looking for some help/to make some suggestions</title>
      <link>https://forum.obsidianportal.com/discussion/3581/looking-for-some-help-to-make-some-suggestions</link>
      <pubDate>Mon, 20 Jan 2014 00:17:07 +0000</pubDate>
      <dc:creator>Drashika</dc:creator>
      <guid isPermaLink="false">3581@/discussions</guid>
      <description><![CDATA[So I don't know if this has been brought up in another post, so if it has, I'm sorry.  Also, I'm new to the site, and if some of these things are already in play, again I apologize.  Here is what I would like to see/need help with:<br />
<br />
I would like it to be possible for my players to have the option to have their character sheets private, while still having the option of being able to edit them.  The only thing I saw like that was that the GM (me) can set it to be a secret character, but the player who created it still can't view it.  Maybe have a "visible to..." option?  Which leads me to my next point.<br />
<br />
I think wiki pages should be able to have different levels of access.  Kind of like the GM Only, except have a section for full access (default) and the option to add other sections as well as the option of giving the players different levels of access which would pertain to the different sections of text (someone with moderate access to a page would be able to read the information written in the box labeled moderate).<br />
<br />
Like I said, if this stuff is already available, someone help.  If not, I think they should be.]]></description>
   </item>
   <item>
      <title>How to get Players interested in writing on OP?</title>
      <link>https://forum.obsidianportal.com/discussion/3573/how-to-get-players-interested-in-writing-on-op</link>
      <pubDate>Sun, 12 Jan 2014 10:44:14 +0000</pubDate>
      <dc:creator>Soulgeared</dc:creator>
      <guid isPermaLink="false">3573@/discussions</guid>
      <description><![CDATA[It seems like a chore to get my players to put their character sheets up, let alone biographies or campaign journals. <br />
Any good incentives to give?]]></description>
   </item>
   <item>
      <title>Blending CSS and Textile</title>
      <link>https://forum.obsidianportal.com/discussion/3570/blending-css-and-textile</link>
      <pubDate>Fri, 10 Jan 2014 14:02:40 +0000</pubDate>
      <dc:creator>estrimple</dc:creator>
      <guid isPermaLink="false">3570@/discussions</guid>
      <description><![CDATA[Hey everyone, I have been a member of OP for a few years now, and ran a pretty successful campaign through it spanning 2010-2013.  Anyway, my group has started a new campaign a few weeks ago and I am trying to put more effort into the Obsidian Portal site this time around (my co-GM did most of it last time, but he is purely a player now and I am the sole GM).  Here is my "campaign":https://wrath-of-the-righteous-shawnee.obsidianportal.com/.  The big problem I am running into is with tables.  "Heroes Unchained":https://heroesunchained.obsidianportal.com/ is my biggest inspiration for how I want my main page and wiki to look, but things like when I try to create a table and use a header at the top is causes either the table to be made, but the header tag shows up, or vice versa.  I'm just wondering how you all do it with the background images, different fonts, etc because I am stumped.  This is my first foray into CSS and textile, so any guidance would be much appreciated.  Thanks!]]></description>
   </item>
   <item>
      <title>Complete Color Theme Kit</title>
      <link>https://forum.obsidianportal.com/discussion/3565/complete-color-theme-kit</link>
      <pubDate>Tue, 07 Jan 2014 14:06:12 +0000</pubDate>
      <dc:creator>ChainsawXIV</dc:creator>
      <guid isPermaLink="false">3565@/discussions</guid>
      <description><![CDATA[Helping out Odhinn_Allfather with his campaign, I ended up cooking up what amounts to a complete color theme kit for campaigns, and I figured I'd share it in a top level thread because it's the kind of thing a number of folks might find useful.<br />
<br />
Basically what was involved here was picking through every page, editing page, and modal dialog and targeting them for color change of background and text color. The net result is a style sheet that provides central control over the color scheme of your entire campaign. The style sheet is around 500 lines long, but it lets you change the color scheme in a unified way by doing a find and replace on a small number of actual color codes. It's completely thorough (as far as I know, anyway), and controls colors for everything in a campaign that it can. There are a few things where color is baked into an image or inline CSS, but they're few and far between.<br />
<br />
"http://omnichron.net/external/op/optheme.css":http://omnichron.net/external/op/optheme.css (Template) Work from this. Default colors set to various shades of gray.<br />
"http://omnichron.net/external/op/opblue.css":http://omnichron.net/external/op/opblue.css (Blue Test) Turns everything it can the same color, to see what you can't change.<br />
<br />
Note that this respects the campaign style colors you set in your settings as much as possible, and has a color key in it to unify the stuff that's hard-coded to orange in the default design, which is meant to be replaced with the color key that matches your primary campaign color setting. For the blue test, obviously you'd want to set all four campaign colors to that same blue.<br />
<br />
Things you can't change as far as I can tell:<br />
<br />
* The icons on the right of the Stream section of the dashboard are baked into PNGs as black<br />
* The dragon head logo is an inline SVG image, might be doable from CSS but I don't think so<br />
* The vertical timeline used in adventure logs is baked into PNGs as shades of white<br />
* A couple of fields in Settings have their colors set by inline CSS at the lowest level]]></description>
   </item>
   <item>
      <title>whoops</title>
      <link>https://forum.obsidianportal.com/discussion/3568/whoops</link>
      <pubDate>Wed, 08 Jan 2014 18:20:05 +0000</pubDate>
      <dc:creator>Peaceful_Warrior</dc:creator>
      <guid isPermaLink="false">3568@/discussions</guid>
      <description><![CDATA[-deleted]]></description>
   </item>
   <item>
      <title>Help sought for Empire Apocalypse https://empire-apocalypse.obsidianportal.com/dashboard</title>
      <link>https://forum.obsidianportal.com/discussion/3559/help-sought-for-empire-apocalypse-https-empire-apocalypse-obsidianportal-com-dashboard</link>
      <pubDate>Thu, 02 Jan 2014 19:11:11 +0000</pubDate>
      <dc:creator>Odhinn_AllFather</dc:creator>
      <guid isPermaLink="false">3559@/discussions</guid>
      <description><![CDATA[Looking for some post-reforge help with my campaign.  I can simplify my current major aims:<br />
1.  Is there a way to change the white default background on every page?  Very hard on the eyes and feel of the campaign.  Can it be made opague across the entire campaign?  I had a black background as a default.  That would be better if possible.<br />
<br />
2.  I have the same question regarding default font color, especially on the front page.  I had a red or dark orange on black that I would like to restore.<br />
<br />
3.  Can the default to the dashboard be changed to the front page?<br />
<br />
I am pasting the original CSS I used below, some of it seems to have taken, some of has not.<br />
<br />
Thanks to any Vanguard willing to help.<br />
<br />
/* High Level Look and Feel Items */<br />
#content {border:1px solid darkred; background-color:opague;color:darkorange;}<br />
#wrapper {border:none; background-color:transparent;}<br />
#campaign-banner-container {border:1px solid red;border-radius:6px;}<br />
#campaign-content {border:1px solid red;border-radius:6px;padding:4px;}<br />
<br />
/* If you want a custom background wallpaper remove the slashes and asterisks from the below item and change the URL to your picture */<br />
/*body {background-image:url('http://cdn.obsidianportal.com/assets/130777/Zombie_Apocalypse_by_rubenz87.jpg<br />
');background-attachment:fixed;}*/<br />
<br />
<br />
/* your campaign comments */<br />
.comment-list .comment {border-bottom:1px solid red;}<br />
.comment-list .comment {border:1px solid red;margin-bottom:5px;}<br />
.comment-list .comment.odd {background-color:black;border:1px solid darkred;}<br />
.comment-list .comment-header {min-height:50px;}<br />
.comment-list .comment-text {border:none;padding:3px;}<br />
<br />
/* the columns and sidebars on the right side */<br />
#secondary-column .sidebar {border:1px solid red; border-radius:6px; padding:10px; background-color:black;}<br />
#secondary-column .sidebar a:link {color:red; text-decoration:none;}<br />
#secondary-column .sidebar a:visited {color:red; text-decoration:none;}<br />
#secondary-column .sidebar a:hover {color:orange; text-decoration:underline;}<br />
#secondary-column .sidebar a:active {color:red; text-decoration:none;}<br />
<br />
#secondary-column .sidebar h4 {font-size:110%; margin:5px; color:red; border-bottom:1px solid red;}<br />
#secondary-column .sidebar .recent-update {border-bottom:1px dotted red;}<br />
<br />
/* Your default Obsidian Portal navigation menu */<br />
.tab-container {border-style:none;}<br />
.tabnav {margin:1px;border-style:none;background:none;margin-bottom:5px;}<br />
.tabnav a:link,.tabnav a:visited,.tabnav a:active {color:red;background-color:transparent;border-style:solid;border-color:darkred;border-width:1px;}<br />
.tabnav a:hover {color:darkorange;background-color:transparent;border-style:solid;border-color:darkorange;border-width:1px;}<br />
.tabnav a.active:link,.tabnav a.active:visited,.tabnav a.active:active,.tabnav a.active:hover{color:orange;background-color:black;border-style:solid;border-color:orange;border-width:1px;}<br />
<br />
/* how your page headers look */<br />
#campaign-content h1 {color:red;margin-top:5px;margin-bottom:5px;border-bottom:1px dotted darkred;}<br />
#campaign-content h2 {color:red;margin-top:5px;margin-bottom:5px;border-bottom:1px dotted darkred;}<br />
#campaign-content h3 {color:red;margin-top:5px;margin-bottom:5px;border-bottom:1px dotted darkred;}<br />
#campaign-content h4 {color:red;margin-top:5px;margin-bottom:5px;border-bottom:1px dotted darkred;}<br />
#campaign-content h5 {color:red;margin-top:5px;margin-bottom:5px;border-bottom:1px dotted darkred;}<br />
<br />
/* default link behavior */<br />
#campaign-content a:link {color:red;text-decoration:none;}<br />
#campaign-content a:visited {color:red;text-decoration:none;}<br />
#campaign-content a:hover {color:orange;text-decoration:underline;}<br />
#campaign-content a:active {color:red;text-decoration:none;}<br />
<br />
/* how links to pages that don’t exist yet look */<br />
#campaign-content a:link.create-wiki-page-link {color:darkgreen;text-decoration:underline;}<br />
#campaign-content a:visited.create-wiki-page-link {color:darkgreen;text-decoration:underline;}<br />
#campaign-content a:hover.create-wiki-page-link {color:green;text-decoration:underline;}<br />
#campaign-content a:active.create-wiki-page-link {color:darkgreen;text-decoration:underline;}<br />
<br />
/* WIKI PAGES */<br />
.wiki-page .textile_longtext.page-body img {border:1px solid red;}<br />
<br />
/* ADVENTURE LOG */<br />
#campaign-content .adventure-log-list {}<br />
.adventure-log-page {margin-bottom:5px;}<br />
.adventure-log-page .post-header {background-color:black;border:1px solid red;border-radius:6px;padding:4px;}<br />
#campaign-content h3.post-title {border-bottom:none;}<br />
#campaign-content h4.post-tagline {border-bottom:none;}<br />
#campaign-content h5.post-time {border-bottom:none;color:gray;}<br />
.adventure-log-page .textile_longtext.post-body img {border:1px solid red;}<br />
<br />
/* MAP TAB */<br />
#campaign-content h3.map-name {border-bottom:none;}<br />
#campaign-content h2.map-name {border-bottom:none;}]]></description>
   </item>
   <item>
      <title>How to Combine Formatting</title>
      <link>https://forum.obsidianportal.com/discussion/3564/how-to-combine-formatting</link>
      <pubDate>Sun, 05 Jan 2014 13:24:58 +0000</pubDate>
      <dc:creator>HecklerusPrime</dc:creator>
      <guid isPermaLink="false">3564@/discussions</guid>
      <description><![CDATA[Hello! I am new to OP and fairly new to Textile/HTML coding in general. I know the basics but am trying to get into deeper stuff. I would like to know if it is possible to combine formatting conditions. For example, supposed I want to add a footnote explanation but want it to be in the style of the smallest heading. The way I'm trying to do it only permits the footnote link or the heading, but not both. See below:<br />
<br />
***BEGIN CODE***<br />
Create footnote here[1]<br />
And another footnote[2]<br />
<br />
h6. fn1. This is a footnote description<br />
fn2. Second footnote description<br />
***END CODE***<br />
<br />
In this case, the two lines are the small font I am looking for, but neither correctly link to the footnotes and instead the "fnX." is shown. There are other combinations I would like to use (different headings within a numbered list that contains sub-lists, etc.), but instead of listing them all I will just hope that the same basic formula (if it exists) is the same for all, which would make learning a lot easier!<br />
<br />
Another quick question I have is if there is a size limit to the media library for each campaign. I should mention that I am using the basic (free) edition of OP.]]></description>
   </item>
   <item>
      <title>Free CSS Templates</title>
      <link>https://forum.obsidianportal.com/discussion/2779/free-css-templates</link>
      <pubDate>Sat, 20 Oct 2012 01:13:06 +0000</pubDate>
      <dc:creator>wolfhound2</dc:creator>
      <guid isPermaLink="false">2779@/discussions</guid>
      <description><![CDATA[So, I decided to create some simple starter templates to help people out who have little to no CSS ... but would like to change the default look of their Obsidian Portal site. By no means do I only plan to do three (and hopefully I'm not alone) but I think this is a good start. The Obsidian Portal community has always been good to me, and this is my way of paying back/paying forward. <br />
<br />
Simple Series <br />
I tried to make these "simple" ones as "plug and play" as possible. No wonky fonts or images or anything like that. They should function as a great starting point for much more complicated stuff. <br />
<br />
* "Black &amp; Red":http://www.obsidianportal.com/campaigns/free-template-simple-black-red<br />
* "Black &amp; Green":http://www.obsidianportal.com/campaigns/free-template-simple-black-green<br />
* "Black &amp; Blue":http://www.obsidianportal.com/campaigns/free-template-simple-black-blue<br />
<br />
Basic Theme Series<br />
These have some images and possibly use Google Fonts, they're still "simple" in that there's no complex CSS going on and it's still basically just a skin over the default Obsidian Portal layout. Images are selected from royalty free stock/sites. <br />
<br />
* "The Innkeeper's Ledger":http://www.obsidianportal.com/campaigns/free-template-innkeeper-s-ledger  (generic and suitable for fantasy)<br />
* "iMetallic":http://www.obsidianportal.com/campaigns/free-template-imetallic (suitable for generic modern day/sci-fi)]]></description>
   </item>
   <item>
      <title>Editing Options</title>
      <link>https://forum.obsidianportal.com/discussion/3555/editing-options</link>
      <pubDate>Mon, 23 Dec 2013 19:18:38 +0000</pubDate>
      <dc:creator>The_Jay</dc:creator>
      <guid isPermaLink="false">3555@/discussions</guid>
      <description><![CDATA[Is it possible to make my campaign only editable by me (the GM)?<br />
<br />
Thanks]]></description>
   </item>
   <item>
      <title>Old character page layout</title>
      <link>https://forum.obsidianportal.com/discussion/3495/old-character-page-layout</link>
      <pubDate>Tue, 12 Nov 2013 14:40:47 +0000</pubDate>
      <dc:creator>WolfLord</dc:creator>
      <guid isPermaLink="false">3495@/discussions</guid>
      <description><![CDATA[Alright, I find myself missing the old characters page layout from before the reforge. It is more condensed this way but me and my players preferred it before. It just doesn't seem as clean now. and It doesn't show the whole picture for some of the characters, AND when you do click on a character their main picture is off floating to the side instead of bigger and on the page, also miss the old version. Do others agree? Or are there any CSS ways to get it more like before without too much fuss? Just wondering if anyone else shares these concerns. <br />
<br />
<br />
"Avatar: Conquest of the Imperial Order":https://avatar_adventures.obsidianportal.com/<br />
"Duskreign’s Favorite CotM January 2012":http://www.obsidianportal.com/campaign/wyrmshadow/wikis/012012<br />
"CotM November 2011":http://blog.obsidianportal.com/november-11-campaign-of-the-month-avatar-conquest-of-the-imperial-order/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=november-11-campaign-of-the-month-avatar-conquest-of-the-imperial-order]]></description>
   </item>
   <item>
      <title>Textile tables post Reforge</title>
      <link>https://forum.obsidianportal.com/discussion/3546/textile-tables-post-reforge</link>
      <pubDate>Tue, 17 Dec 2013 08:25:36 +0000</pubDate>
      <dc:creator>NinjaFlashX</dc:creator>
      <guid isPermaLink="false">3546@/discussions</guid>
      <description><![CDATA[Apologies if this was answered else where, my search-fu didn't turn up anything.<br />
<br />
So "Heroes Unchained":http://www.obsidianportal.com/campaigns/heroesunchained uses a fair amount of textile tables (What can I say, they are so simple to use and look nice and clean). Pre-Reforge textile tables seemed to use an much space on a page as possible, stretching to meet only the page limit. Post-Reforge textile tables only seem to use enough space as is required to fit whatever combo of words/numbers required to fit inside the cell.<br />
<br />
An example that I'm trying to correct are all of our character sheets. Figured I'd start with my character "Vridich":https://heroesunchained.obsidianportal.com/characters/vridich and then fix the rest once I'd figured it out. (which all of my testing appears to not work)<br />
<br />
Is there a way to revert/override the new textile table setting so that it will use auto/stretch to meet a page's width?<br />
<br />
Thanks everyone.<br />
<br />
Flash<br />
"Heroes Unchained":http://www.obsidianportal.com/campaigns/heroesunchained - _Where Slaves Become Legends_]]></description>
   </item>
   <item>
      <title>Returning Post-Reforging</title>
      <link>https://forum.obsidianportal.com/discussion/3537/returning-post-reforging</link>
      <pubDate>Tue, 10 Dec 2013 10:58:11 +0000</pubDate>
      <dc:creator>RobJustice</dc:creator>
      <guid isPermaLink="false">3537@/discussions</guid>
      <description><![CDATA[I'd been away from Obsidian Portal for awhile now. Last I saw it was pre-reforging and I was excited to see the changes. Overall, I'm really impressed with the new look. I have a couple gripes, but I think for ever complaint I have there are two compliments to be made. That said, my two biggest gripes are with how certain things look overall. First, some sections don't match up. The front page, adventure log, wiki, characters, and maps sections all match and flow, but the dashboard, forum, calender, and settings suddenly shoots me to a different look. Now, I understand a OP themed look for the dashboard and settings, but the forum and calender are really jarring to switch to. I'm curious what the design decision was and why this decision was made?<br />
<br />
The second thing involves the banner images; I like the new longer thinner banner space but I hate how it crops the image down for sidebars and profiles. I feel like I can't utilize the margins of my banner since their going to get cropped out. I had to do some odd measuring and sizing to get a banner that is mostly (not even completely) crop free. I feel like the banner is the logo for my game and the cropping is murdering any branding I'm trying to do here. Is this something that's going to be addressed or is it a limitation I'm going to have to live with?<br />
<br />
A totally unrelated question: Is there any plans to do anything that integrates with Google Hangouts? Or does anyone know of anything that does? I'm looking at running games online and right now the only Hangouts app I can find for gaming is Roll20, which is a bit more mapping focused on what I need. Really, just a way to pull up and display wiki pages to my attendants would be amazing.<br />
<br />
Just so this post is just questions and complaints: I freaking love the new characters section. The overall layout is so much cleaner overall and the custom backgrounds and built in styling has really removed a lot of my custom CSS (which is a very good thing!) I'm very happy with the reforging and glad I funded the kickstarter!]]></description>
   </item>
   <item>
      <title>Help Wanted - Twilight of the Cosmos</title>
      <link>https://forum.obsidianportal.com/discussion/3531/help-wanted-twilight-of-the-cosmos</link>
      <pubDate>Tue, 03 Dec 2013 16:49:35 +0000</pubDate>
      <dc:creator>xv_lucid_dreamer_vx</dc:creator>
      <guid isPermaLink="false">3531@/discussions</guid>
      <description><![CDATA[Hey, there. I'm very new to Obsidian portal and I don't quite have a solid understanding of CSS, but I've stumbled on a few snippets of code I can cut and paste into the advanced section and I am currently trying out a membership for Ascendant. I'm struggling with some very simple and basic tasks, and I was wondering if someone might be able to lend a hand? I posted one of these questions on the tips and tricks section but I suspect that may have been the wrong place. At the moment, I'd like to:<br />
<br />
* Change the color of my text in the main box on all of my pages (I'd like the main text box to be black and the text to be white.)<br />
* Remove the heading at the top of my home page (the heading that reads "Home Page" - not the main banner.)<br />
* Show you all what I've posted in the Advanced box, under settings, so that you can maybe point out what I should do to organize my code? It's only a few strings.<br />
* Look up a basic tutorial on CSS so I can have some understanding of what I need to put in the Advanced box and how it's implemented.<br />
<br />
I hope I'm not asking for too much, but I'm a little frustrated and not entirely certain how best to proceed. I managed to push the dragon banner out of the way and upload a new banner and a nice background image, but I'd really like to get a better handle on what I'm doing. If you've taken the time to read this and you're willing to help me out, please know that I sincerely appreciate it.<br />
<br />
You can find my Chronicle here:  <br />
https://twilight-of-the-cosmos.obsidianportal.com/<br />
<br />
Just be warned, it's very much a work in progress.]]></description>
   </item>
   <item>
      <title>Help wanted</title>
      <link>https://forum.obsidianportal.com/discussion/3533/help-wanted</link>
      <pubDate>Fri, 06 Dec 2013 21:04:37 +0000</pubDate>
      <dc:creator>RKraus</dc:creator>
      <guid isPermaLink="false">3533@/discussions</guid>
      <description><![CDATA[Hi there, <br />
<br />
I've been having trouble since the reforging, and could use some help. I'm trying to get my One Life to Give campaign rolling for January, the others can wait.<br />
<br />
First, what systems are currently supported? While I can do ok on my desktop PC, things are much worse on my IPad, to the point where the site isn't even stable. Got a fix for that?<br />
<br />
There are smaller questions as well, but if you look at the site, I think you'll get the idea. One issue is visibility, the grey on white thing doesn't work for me, i had cataract surgery last year.]]></description>
   </item>
   </channel>
</rss>