Sign In
•
Register
Discussions
Sign In
Close
Home
›
Langy
›
Comments
Langy
Comments
Langy
in
Vanguard Member
November 2013
I'm also in the vanguard program; feel free to ask me for any help you need.
Langy
in
Obsidian Portal Launch Feedback
November 2013
Er, you can already link to individual adventure logs and maps. Not sure why you think you can't. Not sure on calendar events, as I haven't used them yet.
Langy
in
Quick 'n Dirty Post-Reforge CSS Fix
November 2013
edited November 2013
Krymorin: Try using the following: @[style*="position:fixed"] img { max-width:100%; }@ And remove the previous max-width:100% tag. That should make it so only the images in your sidebar use it. If you don't want your sidebar to display a…
Langy
in
Changing the Vertical Nav Bar to a Horizontal Nav Bar
November 2013
Yeah, that's my variant of the sidebar. I like the hidey-holiness of it:)
Langy
in
Obsidian Portal Launch Feedback
November 2013
I don't really mind the lack of campaign comments, but I think an interesting option would be for campaign comments to basically be a thread on the forums (and potentially the only thread on the forums that non-campaign-members can read or reply to)…
Langy
in
Custom CSS Beta Discussion
November 2013
Sidebar Float: Change your .campaign-public-layout #sidebar CSS to .campaign-public-layout #sidebar .module Sidebar Modules: If you want to delete *any* element with a specific class, just stick display:none; into its class. So, for example, you …
Langy
in
Custom CSS Beta Discussion
October 2013
I don't think you should need to edit the individual DSS pages to make it fit with the rest of your site, Hum; it's probably all CSS-fixable. One thing you'll want to add (and most people with DSS's will want to add) is: .dynamic_sheet_contain…
Langy
in
Custom CSS Beta Discussion
October 2013
Liam: I don't have any problems like that - my dashboard today is exactly the same as my dashboard yesterday. It sounds like something's gumming up the works in your particular site, but I'm not sure how to help.
Langy
in
Custom CSS Beta Discussion
October 2013
Well, that's problematic. Looks like if you have a DSS for a character, you don't get the sidebar - which is where you can see the previous versions for a character. That's... a problem.
Langy
in
New Reforge Issue Tracking List
October 2013
edited October 2013
Hmm. Is it all PNGs? Or all PNGs? I didn't notice that it was PNG images that were having trouble showing up, but it's a known problem that they're trying to fix. EDIT: Er, that said, they seem to be fixed *right now*, at least the ones that were ha…
Langy
in
Obsidian Portal Launch Feedback
October 2013
Dragoner: I have no idea why you think bolded text isn't bolded or inline links aren't highlighted. They both are, as evidenced on "this page":https://homage-to-peladon.obsidianportal.com/. I *think* IE10 is supported, so that shouldn't be an iss…
Langy
in
Obsidian Portal Launch Feedback
October 2013
edited October 2013
It may sound like an insult, but it's the truth - there is _nothing wrong with your site_. If it's just the banner, that can be easily fixed; you've been given the CSS to reset it to the original dimensions already, and you're apparently Ascendant, …
Langy
in
Obsidian Portal Launch Feedback
October 2013
edited October 2013
Leonidas, what I mean by 'there is nothing much wrong with your campaign' (if I don't qualify it further) is 'nothing in your campaign looks bad, misplaced, or off - it looks *correct*'. I asked Dragoner what browser he was using earlier because …
Langy
in
New Reforge Issue Tracking List
October 2013
Er, the edit box for 'bio' in your profile is... in the 'edit profile' section of the site. It's right underneath 'phone number'.
Langy
in
Obsidian Portal Launch Feedback
October 2013
edited October 2013
Dragoner, your campaigns aren't ruined. Adventure log comments are being restored *right now*, and there's nothing else seriously wrong with your campaigns, unless I missed something while exploring them. EDIT: I forget if you had subforums and such…
Langy
in
Custom CSS Beta Discussion
October 2013
You've got an extra close-div somewhere on that page, which is probably why the stuff in the right margin is in the wrong place. The extra one looks to be in the Description section, at the end of your first BORDERBOX div. Get rid of that close-div …
Langy
in
Obsidian Portal Launch Feedback
October 2013
I kinda like being taken directly to a campaign, but I'd like the option of being able to go directly to the profile page, yes. I'm still wondering what the pin at the upper-right is supposed to do; I thought that it might make it so you automati…
Langy
in
Obsidian Portal Launch Feedback
October 2013
Gotta agree, image embed isn't working right. For one thing, it seems to be loading _every single image_ in the entire library at once before showing any of them. That's obviously going to take a while if you've got several MB of images. Something e…
Langy
in
Reforged Campaigns
October 2013
Er, no, not logging in won't mean you can see something restricted to campaign members only. It means the opposite. Unless you were referring to something else entirely?
Langy
in
Custom CSS Beta Discussion
October 2013
The shrunken text fields and bleached out font/colors can already be fixed without CSS. Just go to the settings part of your dashboard and tweak to your liking using the provided options.
Langy
in
Quick 'n Dirty Post-Reforge CSS Fix
October 2013
"As you can see I am running my site with the collapsed nav bar layout, and prefer that to the full one that Basileus has built his code around. Unfortunately, this is causing some issues with the Adventure Log/Characters/Items pages. I modified the…
Langy
in
Reforged Campaigns
October 2013
Yep, true, nDervish - but meh. It's probably good enough.
Langy
in
How does one center a whole table?
October 2013
You can use CSS with textile code for tables. Just do it like this: table(css-class){style-stuff}. | Table Text | Goes Here | So if you can't use CSS classes, do it as: table{margin-left:auto;margin-right:auto}. | Table Text | Goes Here |
Langy
in
Obsidian Portal Launch Feedback
October 2013
If you're ascendant, and can thus use CSS, just stick something like the following in your CSS: .main-content a.create-wiki-page-link { color: tomato; } .main-content a.create-wiki-page-link:hover { color: firebrick; }
Langy
in
How does one center a whole table?
October 2013
Use: table .class-of-table { margin-left:auto; margin-right:auto; } That is, if you're putting class="class-of-table" in the table's declaration. If you're not, just use style="margin-left:auto;margin-right:auto".
Langy
in
Custom CSS Beta Discussion
October 2013
Oh, the user bit isn't styled as either of those - it's styled as #top-bar .welcome-user when not hovering and there's no difference when hovering.
Langy
in
Custom CSS Beta Discussion
October 2013
edited October 2013
Oh, sorry. That's styled under .top-bar-section li a:not(.button) when not hovering over it and .top-bar-section ul li.hover>a when you hover over it. When inspecting those elements, the thing that's styled is the a element, the link, not the …
Langy
in
Custom CSS Beta Discussion
October 2013
They're styled under .top-bar-section .dropdown li a for the 'normal' style and .top-bar-section ul li.hover>a for the 'hovering over it' style.
Langy
in
Obsidian Portal Launch Feedback
October 2013
edited October 2013
Az_Rune: It will adjust the banner if it's only 750px wide; it'll blow it up a bit, making it fuzzy. If you don't want it to adjust the size at all, make the banner 1000x220 pixels. Or wider if you alter the campaign width, but it's always 220 pixel…
Langy
in
Obsidian Portal Launch Feedback
October 2013
Dragoner, what browser are you using? I just looked through both of those campaigns and I can't see _anything_ that's messed up, except for maybe two cases of using media-item-align-left to try and make an image float next to a piece of text without…
More Comments
September 2026
City of Shadows
Read the
feature post
on the blog
Return to
Obsidian Portal
Langy
Joined
June 2011
Visits
0
Last Active
June 2016
Roles
Reforge Beta Backer
Posts
364
Profile
Activity
Discussions
4
Comments
360
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Register
Sign In
Forum
Home
Discussions
Activity
Conversations
Profile
Information
Terms of Use
Community Rules