<?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/p33/feed.rss</link>
      <pubDate>Sat, 19 Sep 2026 10:15:55 +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/p33/feed.rss" rel="self" type="application/rss+xml" />
   <item>
      <title>Do Something!</title>
      <link>https://forum.obsidianportal.com/discussion/3040/do-something</link>
      <pubDate>Tue, 28 May 2013 14:46:21 +0000</pubDate>
      <dc:creator>Alan_Kellogg</dc:creator>
      <guid isPermaLink="false">3040@/discussions</guid>
      <description><![CDATA[I've been going through the Map looking for campaigns, and while I have found a few that are kept up to date, I've found as many that are just place holders with no reason given to join the group. I have a request for you, update! Add something to your site, even if it's just stray bits of news. Start rumors, describe NPCs, Establish campaign locations. Do something.<br />
<br />
And if you're looking for players, enable to "join campaign" button (or what ever it's called) so people will know to ask.<br />
<br />
Now I'm off to update The Dark Kings Return.]]></description>
   </item>
   <item>
      <title>Change a character from a campaign to another</title>
      <link>https://forum.obsidianportal.com/discussion/3031/change-a-character-from-a-campaign-to-another</link>
      <pubDate>Sun, 19 May 2013 11:11:07 +0000</pubDate>
      <dc:creator>greatkithain</dc:creator>
      <guid isPermaLink="false">3031@/discussions</guid>
      <description><![CDATA[Hi,<br />
<br />
I have one question. I think that it was possible to switch owned characters from a campaign to another one but I can not find how now. <br />
<br />
Can someody help me?<br />
<br />
Thanks in advance and best regards,<br />
Andres]]></description>
   </item>
   <item>
      <title>Link to an anchor on another page</title>
      <link>https://forum.obsidianportal.com/discussion/2974/link-to-an-anchor-on-another-page</link>
      <pubDate>Sun, 07 Apr 2013 20:52:52 +0000</pubDate>
      <dc:creator>Kathea</dc:creator>
      <guid isPermaLink="false">2974@/discussions</guid>
      <description><![CDATA[Hi all,<br />
<br />
I am trying to link to an anchor on another page but so far it's not working.  The link to the anchor tries to work and jumps down to the correct location but then immediately jumps back to the top of the page as if something in the coding is forcing it.  I've tried a variety of different codes  including the  name  and the "name": html .... So far it seems to work best if i use the  link without the / at the end, which is where I get the jump.  All the other methods just bring me to the top of the page.  <br />
<br />
Is there something I'm doing wrong with this.  Please help because it would be great if this could work.  I've looked around the forums and have seen some posts asking about this but I haven't seen any solutions.<br />
<br />
Thanks for any help you can give me<br />
Kathea]]></description>
   </item>
   <item>
      <title>Map question</title>
      <link>https://forum.obsidianportal.com/discussion/3014/map-question</link>
      <pubDate>Tue, 14 May 2013 15:40:18 +0000</pubDate>
      <dc:creator>Stephen</dc:creator>
      <guid isPermaLink="false">3014@/discussions</guid>
      <description><![CDATA[Hi All.<br />
<br />
How do you reveal a map in parts?   I'm thinking of a dungeon crawl, where parts of the map are not visible until the player characters have visited that part of the dungeon?<br />
<br />
Thanks,<br />
Stephen]]></description>
   </item>
   <item>
      <title>Link Colors</title>
      <link>https://forum.obsidianportal.com/discussion/3022/link-colors</link>
      <pubDate>Thu, 16 May 2013 20:06:01 +0000</pubDate>
      <dc:creator>KalinoAltes</dc:creator>
      <guid isPermaLink="false">3022@/discussions</guid>
      <description><![CDATA[Guess I'll take this moment to jump into the forums.<br />
<br />
Hello, I am Kalino Altes... Dungeons and Dragons DM and new Ascendant! (Hurray Kickstarter!)<br />
I'd like to thank some people that I have been stealing code from off the forums:<br />
arsheesh, ChainsawXIV, killervp, gnunn, and I'm sure I've forgotten someone... thank you, too.<br />
<br />
Disclaimer: If the following has already been figured out... not trying to steal anyone's thunder... sorry.<br />
<br />
I have been messing around with updating my campaign page now that I have Ascendant membership and was wanting to change the link color of all my links. I searched on the forums here and only came across the individual link changing color code:<br />
<br />
"{color:green}.DisplayText":http://www.obsidianportal.com<br />
<br />
I have so many links across so many pages though! Totally unacceptable to have to change them individually. How can I change them all at once?<br />
<br />
Well after a little tinkering... put this in your Edit Settings &gt; Custom CSS Section:<br />
<br />
/*Changes the default wiki page links. I recommend specifying the create new page link color as well, or else they will all be the same.*/<br />
a.wiki-page-link{color:maroon;}<br />
a.create-wiki-page-link {color:red;}<br />
<br />
/*Changes the default color of the href links... also known as the "DisplayText":http://www.obsidianportal.com links.<br />
a:link {color:maroon;}<br />
a:visited {color:maroon;}<br />
a:hover {color:maroon;}<br />
a:active {color:maroon;}<br />
<br />
/*That section above also changes all your sidebar link colors, which you may not want.*/<br />
/*This changes the default color of the links within a specified CSS Class, such as "sidebar".*/<br />
.sidebar a:link {color:lightblue;}<br />
.sidebar a:visited {color:lightblue;}<br />
.sidebar a:hover {color:lightblue;}<br />
.sidebar a:active {color:lightblue;}<br />
<br />
If you want to be fancy, you could define different colors for visited, hover, etc... Haven't tried it myself (I'd rather they be the same all the time) but I believe it should work.]]></description>
   </item>
   <item>
      <title>My Account Was Deleted...What Now?</title>
      <link>https://forum.obsidianportal.com/discussion/3016/my-account-was-deleted-what-now</link>
      <pubDate>Wed, 15 May 2013 09:37:53 +0000</pubDate>
      <dc:creator>Dalor</dc:creator>
      <guid isPermaLink="false">3016@/discussions</guid>
      <description><![CDATA[Hello there!<br />
<br />
In a fit, a child of mine deleted my account after trying to delete my campaigns as well. What can I do to regain control of my campaign material? I'm not concerned about the three year tag or any of that at all...or even regaining my friends list and etc; but I do want to regain control of my campaigns.<br />
<br />
Any help would be wonderful. Simply send me a private message or reply here.<br />
<br />
Thanks in advance!]]></description>
   </item>
   <item>
      <title>Inviteing players?</title>
      <link>https://forum.obsidianportal.com/discussion/3013/inviteing-players</link>
      <pubDate>Tue, 14 May 2013 12:57:21 +0000</pubDate>
      <dc:creator>tylyndel</dc:creator>
      <guid isPermaLink="false">3013@/discussions</guid>
      <description><![CDATA[OK I have Invited players to my game.. and they for the e-mail and it tells them to send me an e-mail ..<br />
 how do i Add them?<br />
 or is there a setting i can do that once i send the invite they  are just added to the group?<br />
:) thanks for the help if i can get any]]></description>
   </item>
   <item>
      <title>Subforum Descriptions - where do they go???</title>
      <link>https://forum.obsidianportal.com/discussion/2501/subforum-descriptions-where-do-they-go</link>
      <pubDate>Wed, 11 Apr 2012 03:25:52 +0000</pubDate>
      <dc:creator>NinjaFlashX</dc:creator>
      <guid isPermaLink="false">2501@/discussions</guid>
      <description><![CDATA[Maybe I'm just blind, but when I create a new Subforum, it asks for a description. When I type in said description and click create, I don't see that description displaying anywhere. Am I just missing it?]]></description>
   </item>
   <item>
      <title>Changing link on Tab Nav Bar</title>
      <link>https://forum.obsidianportal.com/discussion/2980/changing-link-on-tab-nav-bar</link>
      <pubDate>Thu, 11 Apr 2013 18:25:49 +0000</pubDate>
      <dc:creator>kettle</dc:creator>
      <guid isPermaLink="false">2980@/discussions</guid>
      <description><![CDATA[Hello all,<br />
<br />
I have searched around, but couldn't find an answer to a small problem.  I want to change where the items tab links to.  I am able to manipulation the look of the tabs, but have not found a way to change their link desitination.<br />
<br />
For example: When someone clicks on the items link I want the to go to my "Vehicle Page":http://www.obsidianportal.com/campaign/rise-of-the-dead/wikis/vehicles instead of the item page.<br />
<br />
Is there anyway to change just one tab?  If not what is the CSS code to replace the tabs on all pages.<br />
<br />
Thank you in advance.<br />
<br />
Kettle<br />
<br />
"Rise of the Dead":http://www.obsidianportal.com/campaigns/rise-of-the-dead]]></description>
   </item>
   <item>
      <title>Kickstarter Ascendant Subscriber</title>
      <link>https://forum.obsidianportal.com/discussion/2988/kickstarter-ascendant-subscriber</link>
      <pubDate>Sun, 28 Apr 2013 20:37:06 +0000</pubDate>
      <dc:creator>againfinitum</dc:creator>
      <guid isPermaLink="false">2988@/discussions</guid>
      <description><![CDATA[I was hoping to start my ascendant subscriber status now having contributed to the kickstarter, but I don't know how. What am I totally not seeing that I'm sure is right in front of my face?]]></description>
   </item>
   <item>
      <title>transparent op logo</title>
      <link>https://forum.obsidianportal.com/discussion/2970/transparent-op-logo</link>
      <pubDate>Fri, 05 Apr 2013 14:53:09 +0000</pubDate>
      <dc:creator>saethone</dc:creator>
      <guid isPermaLink="false">2970@/discussions</guid>
      <description><![CDATA[http://www.obsidianportal.com/images/logo_transparent.png <br />
<br />
doesn't seem to be working anymore, does anybody know if it has been moved?]]></description>
   </item>
   <item>
      <title>Embedding Videos</title>
      <link>https://forum.obsidianportal.com/discussion/2971/embedding-videos</link>
      <pubDate>Sat, 06 Apr 2013 00:39:37 +0000</pubDate>
      <dc:creator>Kyoh</dc:creator>
      <guid isPermaLink="false">2971@/discussions</guid>
      <description><![CDATA[Quick question: I was just wondering how to embed videos on this site. Normally, I managed to just copy the embedded html code and paste it on most sites, but that doesn't seem to be working here. Any help would be greatly appreciated.]]></description>
   </item>
   <item>
      <title>Sidebar Code</title>
      <link>https://forum.obsidianportal.com/discussion/2967/sidebar-code</link>
      <pubDate>Thu, 04 Apr 2013 07:05:03 +0000</pubDate>
      <dc:creator>Keryth987</dc:creator>
      <guid isPermaLink="false">2967@/discussions</guid>
      <description><![CDATA[OK, below is the code I am using to setup a Sidebar navigation on what is becoming my testbed/template site. All of this code comes from NinjaFlashX's post in the HUGE CSS Discussion tiopic<br />
<br />
/*Move Menu to Sidebar*/<br />
.page-title { display: none;} <br />
<br />
.tabnav a:link, .tabnav a:visited, .tabnav a:active, .tabnav a:hover {<br />
    color: midnightblue;<br />
    font-size: 12pt; font-family:'Audiowide';<br />
    text-shadow: 1px 2px 1px white, -1px -2px 1px white;}<br />
<br />
.tabnav a:link, .tabnav a:visited {<br />
    background: none repeat scroll 0 0 transparent;<br />
    border: medium none transparent;<br />
    line-height: 20px;}<br />
<br />
.tabnav {<br />
    background: none repeat scroll 0 0 transparent;<br />
    padding-left: 0;<br />
    position: fixed;<br />
    width: 130px;}<br />
<br />
.tabnav a.active:link, .tabnav a.active:visited {<br />
    background: none repeat scroll 0 0 transparent;<br />
    border: inherit;<br />
    color: black;}<br />
<br />
.tabnav a {<br />
    margin-bottom: 5px;}<br />
<br />
.tab-container {<br />
    left: -125px;<br />
    padding-left: 0;<br />
    position: relative;}<br />
<br />
/*Remove the below tabs from the menu*/<br />
li.forum {display:none;}<br />
li.calendar {display:none;}<br />
li.maps {display:none;}<br />
li.items {display:none;}<br />
<br />
<br />
What my issue is, is this puts the sidebar up on the elft, which I love, but the sidebar is not displaying on IPads and other mobile devices. Also, I'm looking for a way to use this but still have the nav buttons on the top as well.<br />
<br />
As always, any help is appreciated<br />
<br />
Keelah Se'lai,<br />
Keryth<br />
"Shadows Over New York":http://www.obsidianportal.com/campaigns/shadows-over-new-york]]></description>
   </item>
   <item>
      <title>Stumped on one simple change</title>
      <link>https://forum.obsidianportal.com/discussion/2958/stumped-on-one-simple-change</link>
      <pubDate>Wed, 27 Mar 2013 14:03:48 +0000</pubDate>
      <dc:creator>Keryth987</dc:creator>
      <guid isPermaLink="false">2958@/discussions</guid>
      <description><![CDATA[OK gang, I've got MOST of the new site I'm working on setup with the CSS. However, on the comments page, I need to change the text color dor the part where it reads:<br />
Leave a comment (logged in as Keryth987)<br />
<br />
It is currently black and with the black background I have, vanishes. I need to change it to white. <br />
<br />
Any help would be GREATLY appreciated<br />
<br />
<br />
Peace and Long Life,<br />
Keryth<br />
"Shadows Over New York":http://www.obsidianportal.com/campaigns/shadows-over-new-york]]></description>
   </item>
   <item>
      <title>[solved] Character Link Lookup missing (wiki page link lookup also)</title>
      <link>https://forum.obsidianportal.com/discussion/2962/solved-character-link-lookup-missing-wiki-page-link-lookup-also</link>
      <pubDate>Sat, 30 Mar 2013 14:03:49 +0000</pubDate>
      <dc:creator>Angeblich</dc:creator>
      <guid isPermaLink="false">2962@/discussions</guid>
      <description><![CDATA[I am missing the character (and wiki page) link lookup that is mentioned in the help-video. Am I missing something? Do I have to do something for it to appear?<br />
<br />
Edit: Solved it myself: There is now a button beside the text-options (bold, ...) to insert characters and pages. Just in case someone else is searching for it...]]></description>
   </item>
   <item>
      <title>Wiki for Multiple Interconnected campaigns.</title>
      <link>https://forum.obsidianportal.com/discussion/2933/wiki-for-multiple-interconnected-campaigns</link>
      <pubDate>Wed, 13 Mar 2013 00:18:08 +0000</pubDate>
      <dc:creator>BlackBloodWizard</dc:creator>
      <guid isPermaLink="false">2933@/discussions</guid>
      <description><![CDATA[Hey all, I'm excited to use Obsidian Portal, but  one feature I had assumed would be here actually isn't. namely, that there doesn't seem to be a way  (to my knowledge) to use a wiki to keep  the wiki relevant connecting the info for multiple campaigns if one plans to run a succession of games in a constant universe (the wiki giving relevant into, as well as info as to events that occurred in past campaigns such that players need not have participated in past games to understand what has transpired and how that might affect the present) is there a way (other than simply copy pasting pages) to keep say, each successive wiki connected with old data? is there a mass transport system that allows you to connect your wiki's?<br />
<br />
also another short but unrelated question is are quickjump links (like the ones used in the actual wikipedia, that break up the article) available to use on OP?]]></description>
   </item>
   <item>
      <title>Setting Multiple Font Families in Textile</title>
      <link>https://forum.obsidianportal.com/discussion/2935/setting-multiple-font-families-in-textile</link>
      <pubDate>Wed, 13 Mar 2013 11:06:07 +0000</pubDate>
      <dc:creator>AwesomeBrainPowers</dc:creator>
      <guid isPermaLink="false">2935@/discussions</guid>
      <description><![CDATA[Sorry if this was answered already, but I searched the forums and the OP Help pages and have found no answer so far, so:<br />
<br />
Is there a way to set multiple font families for text?<br />
<br />
Previously (so maybe in an earlier version of Textile), I was able to format headers in my campaign's wiki like this:<br />
<br />
h1&gt;{font-family:Lucida Sans Unicode, Lucida Grande;line-height:0.5em;color:#aaa;}. *header1*<br />
<br />
And that worked (granted, I didn't test it on a Mac, so I don't know if it actually _displayed_ Lucida Grande, but Textile at least accepted my code and displayed Lucida Sans Unicode as the header font).<br />
<br />
Recently, though, if I try to list more than one font when describing any text (header, body, whatever), it breaks Textile and all I see is the unrendered code on the page. I really don't want to start trying to mix and match HTML with Textile, as that's led to more than a few headaches before. Does anyone know how (or if) I can set multiple font families without resorting to DIVs or SPANs?]]></description>
   </item>
   <item>
      <title>HELP! CSS flop screwed up my campaign!</title>
      <link>https://forum.obsidianportal.com/discussion/2936/help-css-flop-screwed-up-my-campaign</link>
      <pubDate>Wed, 13 Mar 2013 17:06:00 +0000</pubDate>
      <dc:creator>tommy19</dc:creator>
      <guid isPermaLink="false">2936@/discussions</guid>
      <description><![CDATA[Hi everyone I'm in desperate need of help. I'm kind of new to CSS and have managed to make a few of my campaigns look really cool. I was trying to do that with another one and added a background CSS. I added the position:fixed; attribute and now I can't scroll down any page! Which means I can't fix it. if it helps here the exact code I used.<br />
<br />
/* Background */<br />
#content {border:1px solid maroon; background-color:black; background-image:url('http://wallmages.com/wp-content/uploads/2013/02/Pikachu-Pokemon-Wallpaper.jpg');position:fixed;}<br />
<br />
Is there anything that I can do?]]></description>
   </item>
   <item>
      <title>Looking for VtM Campaign</title>
      <link>https://forum.obsidianportal.com/discussion/2930/looking-for-vtm-campaign</link>
      <pubDate>Mon, 11 Mar 2013 19:54:54 +0000</pubDate>
      <dc:creator>Crpowers</dc:creator>
      <guid isPermaLink="false">2930@/discussions</guid>
      <description><![CDATA[I'm looking for an online Vampire the Masquerade campaign. Any room for me?]]></description>
   </item>
   <item>
      <title>Edit Buttons</title>
      <link>https://forum.obsidianportal.com/discussion/2929/edit-buttons</link>
      <pubDate>Fri, 08 Mar 2013 06:42:19 +0000</pubDate>
      <dc:creator>eiredrake</dc:creator>
      <guid isPermaLink="false">2929@/discussions</guid>
      <description><![CDATA[I've noticed during my many edits that in some places in the GM screen there is a little icon that means 'edit' for an entry. On other screens there a button that says something like 'Edit this Page'. Some times this second type of button is at the bottom and you have to scroll down for it.<br />
<br />
I was wondering if there was a way to ensure that on every screen the buttons are up the top and look the same. Also useful would be the save button up the top. Is there a way to customize that through CSS?]]></description>
   </item>
   <item>
      <title>More Character Headings/Sections</title>
      <link>https://forum.obsidianportal.com/discussion/2924/more-character-headings-sections</link>
      <pubDate>Mon, 04 Mar 2013 20:51:42 +0000</pubDate>
      <dc:creator>Baro</dc:creator>
      <guid isPermaLink="false">2924@/discussions</guid>
      <description><![CDATA[In our games we often end up with many many NPC's listed.  The tag system just isn't working for us,  I'd love the ability to sort characters into more categories.  Right now you can sort characters as player/npc but is there any way to add more headings or just group the characters better?  A huge alphabetical list isn't working when you have almost 100 characters.<br />
<br />
I guess the alternative is to not use the characters tab for navigation but to maintain some sort of wiki page that groups all the characters.  I'm just wondering if there's something better.]]></description>
   </item>
   <item>
      <title>styling like the Campaign of the month</title>
      <link>https://forum.obsidianportal.com/discussion/2912/styling-like-the-campaign-of-the-month</link>
      <pubDate>Tue, 26 Feb 2013 11:03:58 +0000</pubDate>
      <dc:creator>Striogi</dc:creator>
      <guid isPermaLink="false">2912@/discussions</guid>
      <description><![CDATA[So I was looking at the featured campaign and was wondering how they do some of the styling - (I may not be using the right term) things like:<br />
- the frame cut off (read more link)<br />
- drawing a box around the adventure log posts or something like that so that they are visually separated... I suppose I could add a picture at the beginning of every Adventure log entry, but that could eat up a huge amount of time to create the art and use it. <br />
<br />
I'm not anywhere near a coding guru, in fact I seem to break everything I touch - so I'm looking for simple solutions.<br />
<br />
if you'd like to see the visual disaster that my campaign is, take a look here: http://www.obsidianportal.com/campaigns/yerth-campaign-setting]]></description>
   </item>
   <item>
      <title>Printing dynamic character sheets with GreaseMonkey</title>
      <link>https://forum.obsidianportal.com/discussion/2923/printing-dynamic-character-sheets-with-greasemonkey</link>
      <pubDate>Mon, 04 Mar 2013 17:06:54 +0000</pubDate>
      <dc:creator>markspace</dc:creator>
      <guid isPermaLink="false">2923@/discussions</guid>
      <description><![CDATA[When using dynamic character sheets, the css file for the sheet is loaded with a media=screen attribute. This means that it is ignored when printing the page, which removes all the styling for the dynamic character sheet. By using the GreaseMonkey plugin on Firefox or Chrome with a small script, you can change this to media=all which then keeps the same styling for printing.<br />
This gives better print results. (If you want even better results, then add @print sections to the character sheet css to remove non-character sheet elements and page breaks).<br />
<br />
Its not perfect, but might be useful to some people.<br />
<br />
GreaseMonkey is a plugin that runs on Firefox and Chrome and is used to alter web pages on the fly.<br />
<br />
The GreaseMonkey script I am using is:<br />
<br />
// ==UserScript==<br />
// // @name        opcharprint<br />
// // @namespace   markspace<br />
// // @description Obsidian Portal Print fix<br />
// // @include     http://www.obsidianportal.com/*/characters/*<br />
// // @version     1<br />
// // @grant none<br />
// // ==/UserScript==<br />
<br />
jQuery('link[class="dst-stylesheet-link"]').attr('media', 'all');]]></description>
   </item>
   <item>
      <title>forum headers</title>
      <link>https://forum.obsidianportal.com/discussion/2918/forum-headers</link>
      <pubDate>Fri, 01 Mar 2013 16:40:13 +0000</pubDate>
      <dc:creator>Dr_Squid</dc:creator>
      <guid isPermaLink="false">2918@/discussions</guid>
      <description><![CDATA[Alright after much trial and error I have finally gotten rid of the alternating background colors in the forums(curse you elusive tr.odd!) Now just one hurdle remains that is driving me nuts. I can't figure out the class to change the background color of the subforum and topics rows. I thought it was header-row but that does nothing. If anyone can clue me in as to the right direction, it would be much appreciated.]]></description>
   </item>
   <item>
      <title>Does ObsidianPortal Support SWF Files?</title>
      <link>https://forum.obsidianportal.com/discussion/2914/does-obsidianportal-support-swf-files</link>
      <pubDate>Tue, 26 Feb 2013 15:30:24 +0000</pubDate>
      <dc:creator>Aranai</dc:creator>
      <guid isPermaLink="false">2914@/discussions</guid>
      <description><![CDATA[I've been poking around, and I can't seem to figure out how to make a .swf file function (if at all). Does ObsidianPortal support it, or do I have to link elsewhere?]]></description>
   </item>
   <item>
      <title>Map Sizing</title>
      <link>https://forum.obsidianportal.com/discussion/2911/map-sizing</link>
      <pubDate>Tue, 26 Feb 2013 06:47:07 +0000</pubDate>
      <dc:creator>GM_Dragon</dc:creator>
      <guid isPermaLink="false">2911@/discussions</guid>
      <description><![CDATA[I am having issues with the sizing of the maps that I import into the map tab.  Is there a certain size they have to be so they are proportioned correctly?]]></description>
   </item>
   <item>
      <title>CSS Code on Lapsed Ascendant Memeberships</title>
      <link>https://forum.obsidianportal.com/discussion/2905/css-code-on-lapsed-ascendant-memeberships</link>
      <pubDate>Wed, 20 Feb 2013 02:12:18 +0000</pubDate>
      <dc:creator>Teleute</dc:creator>
      <guid isPermaLink="false">2905@/discussions</guid>
      <description><![CDATA[I want to buy a friend of mine an ascendant membership and do some custom CCS code for his sites but I was wondering if the CSS becomes broken if the membership ends? I don't want him to feel obligated to keep the membership just to keep the CSS if he doesn't feel like renewing in a year. I know some features stay when an account lapses, like backgrounds and maps, and I was hoping CSS would be the same.]]></description>
   </item>
   <item>
      <title>Dynamic Pathfinder Character Sheet with monks</title>
      <link>https://forum.obsidianportal.com/discussion/2887/dynamic-pathfinder-character-sheet-with-monks</link>
      <pubDate>Sun, 10 Feb 2013 00:21:46 +0000</pubDate>
      <dc:creator>JaymesBolton</dc:creator>
      <guid isPermaLink="false">2887@/discussions</guid>
      <description><![CDATA[So starting in a new pathfinder game and playing as a monk. The dynamic sheets will not allow me to edit my CMB and CMD. Anyone know how to fix it?<br />
<br />
-Jaymes<br />
<br />
"Changing History":http://www.obsidianportal.com/campaigns/l5r-changing-history<br />
"COTM Feburary 2013":http://blog.obsidianportal.com/changing-history-februarys-campaign-of-the-month/]]></description>
   </item>
   <item>
      <title>Custom CSS for SOME Links</title>
      <link>https://forum.obsidianportal.com/discussion/2903/custom-css-for-some-links</link>
      <pubDate>Mon, 18 Feb 2013 10:41:23 +0000</pubDate>
      <dc:creator>Taellosse</dc:creator>
      <guid isPermaLink="false">2903@/discussions</guid>
      <description><![CDATA[So I'm experimenting with custom CSS to install in one of my ongoing campaign sites.  I should stress that I'm not very experienced with CSS.  I have a working knowledge of basic HTML, and I've become reasonably conversant in textile from using it on OP, but CSS is pretty new to me.  At present I'm fiddling on a test campaign, so as not to impact the usability of the real one.  I've got things more or less how I want, but I'm stuck on this one thing.  <br />
<br />
I've defined (I think), in the global CSS, alternate link behavior, which I want to use in table headers and the like.  It reads as follows:<br />
<br />
.header-content a:link {color:lightblue;text-decoration:underline;}<br />
.header-content a:visited {color:lightblue;text-decoration:underline;}<br />
.header-content a:hover {color:skyblue;text-decoration:none;}<br />
.header-content a:active {color:royalblue;text-decoration:underline;}<br />
<br />
And I've tried to apply it to the main wiki page, which I have set up as a div-table.  When I add ..., wrapped around the ... that defines the two sections whose headers are also links, it appears to work properly in the preview, but when I save the changes, the final version of the page ignores it, and the link behavior remains the standard defined for the whole site.  Is there something I'm doing wrong, or is this just not actually possible to do with the limited global CSS that has been implemented on OP?]]></description>
   </item>
   <item>
      <title>StarWars D6 Character Sheets</title>
      <link>https://forum.obsidianportal.com/discussion/2900/starwars-d6-character-sheets</link>
      <pubDate>Thu, 14 Feb 2013 18:22:22 +0000</pubDate>
      <dc:creator>DamienMaster</dc:creator>
      <guid isPermaLink="false">2900@/discussions</guid>
      <description><![CDATA[Hey OP<br />
<br />
Especially you old-school Star Wars D6ers...<br />
<br />
I thought I would finally share my custom designed Character Sheets for the West End Games', 2nd Edition, Star Wars D6 Roleplaying Game.<br />
<br />
The Portfolio Contains: <br />
Designer Notes<br />
Standard Players Character Sheet<br />
Customizable (Attribute) Players Character Sheet<br />
Jedi Powers Sheet<br />
Starship Sheet<br />
<br />
<br />
"Damienmaster's StarWarsD6 CharacterSheet Portfolio":http://www.obsidianportal.com/campaign/roguetraders/wikis/character-sheets<br />
<br />
Enjoy...<br />
<br />
<br />
Take the game seriously but not yourself!<br />
<br />
Damienmaster<br />
"Star Wars: Rogue Traders Campaign of the Month, May 2012":http://www.obsidianportal.com/campaigns/roguetraders]]></description>
   </item>
   </channel>
</rss>