DIV.extraUserInfo{
display: none !important; }
With how I set it up it should be fairly easy to edit those yourself. Just change the various background:color, as well as background to whatever variation of black you'd like, or even just straight up type in black instead of a colour code, then do the same for color: #969696 but change that code to your selected white, typing in white is also valid of course.
Still, thanks.I intended to install it to begin with, but I was tired last night and didn't get to it before I went to bed.
Do you know how I can use stylish to change my default font for this site? I'm not a fan of Times New Roman.I just spent the past 5 or 10 minutes throwing together a horribly messy userstyle for nitrogen that looks decent enough to work as a stop-gap until there's hopefully something better. Here it is if you want it. http://pastebin.com/vttN4MhA Just throw it in stylish or whatever, if you don't like orange then just change the last colour code and it should in theory all change, you know, unless I missed something.
It's also gotten rid of the recent posts thing on everything but the main forum page, well unless like I said, I missed something. I didn't touch profile or option stuff since I don't normally go to those, but I can fix them up too if it's wanted.
How do you edit this stuff?Do you know how I can use stylish to change my default font for this site? I'm not a fan of Times New Roman.
That should be as easy as just doing this.Do you know how I can use stylish to change my default font for this site? I'm not a fan of Times New Roman.
body{
font-family: Whatever-you-like
}
Do you mean editing things in general with stylish or editing the styles themselves? If it's the latter then just find stylish and right click > edit on the script you want to edit. If it's the former, then that involves learning CSS, which while not hard, is kind of time consuming.
Today has been a great way to refresh myself when it comes to CSS. It's also come with me completely reworking Nitrogen to fit my preferences which is kind of a bonus.
That should be as easy as just doing this.
Most things should read the font from body anyways, there may be a few things that don't but that standard text should.Code:body{ font-family: Whatever-you-like }
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("forum.questionablequesting.com") {
body{
font-family: arial
}
}
It seems like I was wrong and it's based on .message not body.Is that right? Because it's not working.Code:@namespace url(http://www.w3.org/1999/xhtml); @-moz-document domain("forum.questionablequesting.com") { body{ font-family: arial } }
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("forum.questionablequesting.com") {
body{
font-family: Arial
}
}
It's a hell of a lot better than Flexile, even with the rather hideous lime-green buttons.For people who liked the Flexile Dark, try the Dark Responsive. Bought it for here especially, so I think you will like it.
How is that different from what I wrote?It seems like I was wrong and it's based on .message not body.
That should end up working, I know it got Consolas working for me.Code:@namespace url(http://www.w3.org/1999/xhtml); @-moz-document domain("forum.questionablequesting.com") { body{ font-family: Arial } }
I've never actually used font related things before so this has mostly been guessing until I figure out how it works.
We can adjust the colors of the button soon (once I figure out how) though I personally like the level of darkness the theme has. Bright enough to be readable but not eye searing like the pure white skins are.It's a hell of a lot better than Flexile, even with the rather hideous lime-green buttons.
Background's not quite dark enough, though.
Post backgrounds are fine, thread background is a bit light. Just my opinion, doesn't actually effect readability at all.We can adjust the colors of the button soon (once I figure out how) though I personally like the level of darkness the theme has. Bright enough to be readable but not eye searing like the pure white skins are.
True, a bit more contrast would be nice. I'll try to do it myself (and make the eye-searing green darker as well) or if I can't figure it out, get alethiophile or elegee to help.Post backgrounds are fine, thread background is a bit light. Just my opinion, doesn't actually effect readability at all.
That's what happens when I post when half asleep, it should have been this.
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("forum.questionablequesting.com") {
.message{
font-family: Arial
}
}
Dark Responsive is really good, could use a tweek to make the background bubbles properly black instead of light grey though. Then it'd be perfect.For people who liked the Flexile Dark, try the Dark Responsive. Bought it for here especially, so I think you will like it.
Yeah. Is there some way to find it for myself? I tried a few things that I found with "Inspect Element," but none of them worked.That's what happens when I post when half asleep, it should have been this.
There's a problem with the fact that I'm pretty sure some themes use different selectors for text, so I may need to look into what it is for your theme, since I'm still using nitrogen even if at this point it doesn't look like nitrogen at all.Code:@namespace url(http://www.w3.org/1999/xhtml); @-moz-document domain("forum.questionablequesting.com") { .message{ font-family: Arial } }
If you're making use of the element selector thing in Inspect Element that allows you to mouse over things to see what they effect, do that for a post and under Rules look for the bit mentioning font-family.asdf
Yeah. Is there some way to find it for myself? I tried a few things that I found with "Inspect Element," but none of them worked.
body{
font-family: "Consolas"!important;
font-size: 14px!important
}
.messageText{
font-family: inherit!important;
font-size: inherit!important
}
If you're making use of the element selector thing in Inspect Element that allows you to mouse over things to see what they effect, do that for a post and under Rules look for the bit mentioning font-family.
For example, when you inspect a post with Dark Responsive you'll end up seeing .messageText as the selector for all of that. Strangely enough I had issues getting that to work with font changing on its own so I went through a bit of a round about method that looks like this.
There's a chance that my original issues with it just came from because I forgot to add the !important onto the font-family and font-size in .messageText, but in the end this works fine too.Code:body{ font-family: "Consolas"!important; font-size: 14px!important } .messageText{ font-family: inherit!important; font-size: inherit!important }
.messageText {
font-size: 11pt;
font-family: Georgia,"Times New Roman",Times,serif;
line-height: 1.4;
}
Yep, that's the right thing. Just change font-family to whatever you want, you can of course leave everything else alone if you want to. Also, when changing things you may want to remember to put !important after each line of a property, it seems like that might be important for font changes to work properly, it's a bit hard to tell.That it?Code:.messageText { font-size: 11pt; font-family: Georgia,"Times New Roman",Times,serif; line-height: 1.4; }
Thanks. Do you know why I can't change the font size, though?Yep, that's the right thing. Just change font-family to whatever you want, you can of course leave everything else alone if you want to. Also, when changing things you may want to remember to put !important after each line of a property, it seems like that might be important for font changes to work properly, it's a bit hard to tell.