It is currently Fri Nov 29, 2024 10:49 am

All times are UTC - 6 hours [ DST ]




Post new topic Reply to topic  [ 1510 posts ]  Go to page Previous  1 ... 37, 38, 39, 40, 41, 42, 43 ... 76  Next
Author Message
PostPosted: Wed Aug 06, 2014 1:57 pm 
Offline
Member
User avatar

Joined: Sep 19, 2013
Posts: 2156
Identity: Otter
Preferred Pronoun Set: Otterself
Neqtan wrote:
trappedslider I agree with you about the link resembling an old wotc layout. But for its purpose that link was intended, to show a little separation in post boxes and a little character to there frames. Im just not fond of forum posts being jumbled together one on top of the other, a little break up in space looks good to me aesthetically. But my taste may not be mirrored by many and thats alright.


yeah one of the complaints was that it was too "busy" too many things going on that folks wouldn't use or didn't like..I for one don't mind how the forum looks currently. It's simple easy to get around, no wasted space.

_________________
Image


Like this post
Top
 Profile  
 
PostPosted: Wed Aug 06, 2014 2:04 pm 
Offline
Development Lead
User avatar

Joined: Sep 19, 2013
Posts: 1542
There's two parts to a skin: a template and a theme.

Templates tell the forum what HTML to produce -- this modifies how pages are laid out, what is displayed, and so on. They're written in a weird PHP/HTML hybrid.
Themes tell your browser how to display the HTML produced by the template. The most obvious changes are color schemes. They're written in CSS.

Right now we have three skins (dark grey, papyrus, and original subsilver2); they all use the same template but have different themes.

The template used by our skins right now has a fair number of custom modifications, so using a new template isn't just a matter of download-and-install, unfortunately. It would be great if we could support a variety of different skins to make everybody happy, but in the end NGA is basically a labor-of-love volunteer project, and we just can't dedicate the time and effort to create and support more skins in addition to our other duties.

That said, please do keep making suggestions. Everything posted here is considered! :D

_________________
"In the beginning, there was nothing, which exploded." — Terry Pratchett


Like this post
Top
 Profile  
 
PostPosted: Wed Aug 06, 2014 2:39 pm 
Offline
Member

Joined: Sep 22, 2013
Posts: 4859
Identity: genderqueer
Preferred Pronoun Set: zie/zin/zir/zirs/zinself
Hm, as long as one part of it is controlled by the CSS, it should be pretty easy for folks to write their own Themes for new skins that, as the existing ones do, use the same Templates.

Does the CSS specify what posts should look like? If so it might be possible to create space between posts simply by dropping in 10px of padding on top and bottom... That would mean we could do some layout stuff without actually screwing around with the Templates.


Like this post
Top
 Profile  
 
PostPosted: Wed Aug 06, 2014 2:52 pm 
Offline
Development Lead
User avatar

Joined: Sep 19, 2013
Posts: 1542
Yep.

Actually there are already "spacer" elements between posts so you could also do
Code:
td.spacer {
   padding: 10px 0px;
}

_________________
"In the beginning, there was nothing, which exploded." — Terry Pratchett


Like this post
Top
 Profile  
 
PostPosted: Wed Aug 06, 2014 4:55 pm 
Offline
Member

Joined: Sep 22, 2013
Posts: 4859
Identity: genderqueer
Preferred Pronoun Set: zie/zin/zir/zirs/zinself
That's convenient!

Is the CSS available anywhere? Maybe some of the folks who want new skins want to take a crack at it themselves! I mean, I always figure that if people want a code thing done they can always take a stab at it themselves!


Like this post
Top
 Profile  
 
PostPosted: Wed Aug 06, 2014 5:28 pm 
Offline
Former Staff
User avatar

Joined: Sep 20, 2013
Posts: 3240
Yes I could get you the CSS for the current themes when I had a moment. During the creation of both Papyrus and the Dark Grey theme the CSS for each was hosted in the front post of the thread here in the metaboard about Forum Skins. That way users could beta test them out via addons like Stylish and give feedback before we actually implemented the final copy onto the site software.

I'll have to see if I have a version of the currently in use code here somewhere. ((I know I have it on my desktop but I'm out of country currently.)) If not Welder can snag it for sure.

Tomorrow is my day off, so I'll work on starting up a new Theme/Layout discussion thread and have the three CSS scripts in the into posts so that people can tinker and such. If nothing else I could give users like Neqtan pointers on things like Stylish so if padding between posts is something they want they can simply change one number in the chrome addon to suit their tastes regardless of what the board themes themselves are set to.

_________________
No Goblins Allowed Code Of Conduct

D&D 5e Rules Q&A


Like this post
Top
 Profile  
 
PostPosted: Wed Aug 06, 2014 8:08 pm 
Offline
Member
User avatar

Joined: Aug 05, 2014
Posts: 245
Glad somebody asked the question for the use of css to make alterations without having to alter the main template. Also as far as mods it should not be difficult to implement them as long as the mods can be referenced like a .css file.

Would take me some time but I could take a crack at a theme or two. If a .css theme could simply be referenced and altered via one script it would make altering the look of the whole site fast and painless.

Is there a way you could make scripts and code less visible to users? Also is it needed to reference css files that are on another site server? I have not looked heavily at anything but XSS should always be a concern.

Sapper I prefer firefox ;)


Last edited by Neqtan on Wed Aug 06, 2014 8:13 pm, edited 1 time in total.

Like this post
Top
 Profile  
 
PostPosted: Wed Aug 06, 2014 8:12 pm 
Offline
Former Staff
User avatar

Joined: Sep 20, 2013
Posts: 3240
What exactly are your goals?

_________________
No Goblins Allowed Code Of Conduct

D&D 5e Rules Q&A


Like this post
Top
 Profile  
 
PostPosted: Wed Aug 06, 2014 8:21 pm 
Offline
Member
User avatar

Joined: Aug 05, 2014
Posts: 245
I like the site layout / template the way it is. Utilizes the page nicely. But if given the chance I would change the background image, add a little padding so the image would show through, round the edges of boxes. Just some small tweaks honestly.

How would it look if you kept the boxes tight but added a little transparency around the borders. Then an interesting background could show through but space would be conserved.


Like this post
Top
 Profile  
 
PostPosted: Wed Aug 06, 2014 11:00 pm 
Offline
Development Lead
User avatar

Joined: Sep 19, 2013
Posts: 1542
Getting the CSS? No problem!

Actually it is probably easiest to just link to the stylesheets than to copy/paste their contents, so here you go:

Enjoy! :)

_________________
"In the beginning, there was nothing, which exploded." — Terry Pratchett


Like this post
Top
 Profile  
 
PostPosted: Thu Aug 07, 2014 3:29 am 
Offline
Former Staff
User avatar

Joined: Sep 20, 2013
Posts: 3240
Neqtan wrote:
I like the site layout / template the way it is. Utilizes the page nicely. But if given the chance I would change the background image, add a little padding so the image would show through, round the edges of boxes. Just some small tweaks honestly.

How would it look if you kept the boxes tight but added a little transparency around the borders. Then an interesting background could show through but space would be conserved.
Ah, so like a lot of the free guild/clan hosting sites default themes. Gotcha.

Edit : Like this Minecraft server freesite http://www.mcthewalls.com/forum except having the background between posts too.

_________________
No Goblins Allowed Code Of Conduct

D&D 5e Rules Q&A


Like this post
Top
 Profile  
 
PostPosted: Thu Aug 07, 2014 4:23 am 
Offline
Member
User avatar

Joined: Aug 05, 2014
Posts: 245
Neqtan wrote:
I like the site layout / template the way it is. Utilizes the page nicely. But if given the chance I would change the background image, add a little padding so the image would show through, round the edges of boxes. Just some small tweaks honestly.

How would it look if you kept the boxes tight but added a little transparency around the borders. Then an interesting background could show through but space would be conserved.
Ah, so like a lot of the free guild/clan hosting sites default themes. Gotcha.

Edit : Like this Minecraft server freesite http://www.mcthewalls.com/forum except having the background between posts too.


No at all. Closer to this http://vbsocial.com/forum/showthread.php/1714 but not exactly. Obviously not a background with such hot spots that make text obscure to read as you scroll over it. In fact the post area should not be transparent at all to remove this problem entirely. Like i said previously I envision only the borders having a slight transparency for a subtle reveal of the background. Possibly lighter shaded boxes on dark background to make the reading more pleasurable. As I dont think many people enjoy reading white text.

If you can picture this exact layout no alterations to positioning, but with a theme similar to the link and to my specifications. Then thats a little closer to my vision. But if im the only one who would enjoy that, I would not spend the time.

Thanks for the feedback Sapper. Welder thanks for the links to the themes.

Even if nobody is interested in my theme idea, I would still offer to help where and how I can.


Like this post
Top
 Profile  
 
PostPosted: Thu Aug 07, 2014 5:13 am 
Offline
Member
User avatar

Joined: Sep 23, 2013
Posts: 10342
Preferred Pronoun Set: BH/B.H./Bounty Hunter
Is there any way to make pictures able to be clicked and dragged to increase / decrease their size? For instance how Reddit Enhancement Suite makes you able to grab an image and then expand it.

_________________
"Life is like a Dungeon Master, if it smiles at you something terrible is probably about to happen."

Play-By-Post Games
Phandelver : IC / OC / Map


Like this post
Top
 Profile  
 
PostPosted: Thu Aug 07, 2014 5:23 am 
Offline
YMtC Champ '11
YMtC Pro Tour Champion
YMtC Idol Winner
User avatar

Joined: Sep 23, 2013
Posts: 10665
Preferred Pronoun Set: he/him/my/mine/himself
Not currently, since you insert them into the post as text. There is a width/height parameter in the IMG tag that let's you scale it though.

_________________
[Warchief] Custom EDH Project
you're like the kind of person who would cast Necropotence irl


Like this post
Top
 Profile  
 
PostPosted: Thu Aug 07, 2014 5:31 am 
Offline
Member
User avatar

Joined: Sep 23, 2013
Posts: 10342
Preferred Pronoun Set: BH/B.H./Bounty Hunter
Obviously not currently, I'm speaking of getting a phpbb addon or implementing something onto the site.

_________________
"Life is like a Dungeon Master, if it smiles at you something terrible is probably about to happen."

Play-By-Post Games
Phandelver : IC / OC / Map


Like this post
Top
 Profile  
 
PostPosted: Thu Aug 07, 2014 8:12 am 
Offline
YMtC Champ '11
YMtC Pro Tour Champion
YMtC Idol Winner
User avatar

Joined: Sep 23, 2013
Posts: 10665
Preferred Pronoun Set: he/him/my/mine/himself
It's probably doable, but it's a little awkward, as such things fit better in WYSIWYG editors.

_________________
[Warchief] Custom EDH Project
you're like the kind of person who would cast Necropotence irl


Like this post
Top
 Profile  
 
PostPosted: Thu Aug 07, 2014 6:49 pm 
Offline
Member
User avatar

Joined: Sep 23, 2013
Posts: 10342
Preferred Pronoun Set: BH/B.H./Bounty Hunter
Hrrm. Thanks for feedback.

_________________
"Life is like a Dungeon Master, if it smiles at you something terrible is probably about to happen."

Play-By-Post Games
Phandelver : IC / OC / Map


Like this post
Top
 Profile  
 
PostPosted: Thu Aug 07, 2014 7:43 pm 
Offline
Member

Joined: Oct 30, 2013
Posts: 16394
Location: Secret Lair
If at all possible I want to be able to copy someone on a pm.

Or I want someone to explain how to do this if it is already a feature.


Like this post
Top
 Profile  
 
PostPosted: Thu Aug 07, 2014 7:46 pm 
Offline
Development Lead
User avatar

Joined: Sep 19, 2013
Posts: 1542
When composing a PM, on the left side there should be a text box labeled "Usernames". Put the usernames to PM in that box, one per line. Then look a bit lower down for buttons labeled "Add [To]" and "Add [BCC]". Click the appropriate button and those people will be added to your PM.

_________________
"In the beginning, there was nothing, which exploded." — Terry Pratchett


Like this post
Top
 Profile  
 
PostPosted: Thu Aug 07, 2014 11:13 pm 
Offline
Development Lead
User avatar

Joined: Sep 19, 2013
Posts: 1542
By the way, I moved the "Search this thread" box up to a more visible location. It also has a more descriptive label. Yay!

_________________
"In the beginning, there was nothing, which exploded." — Terry Pratchett


Like this post
Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 1510 posts ]  Go to page Previous  1 ... 37, 38, 39, 40, 41, 42, 43 ... 76  Next

All times are UTC - 6 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
Powered by phpBB® Forum Software © phpBB Group