Steel Guitar Forum text size
Moderator: Wiz Feinberg
-
- Posts: 603
- Joined: 2 May 2002 12:01 am
- Location: Frankfort, NY, USA
Steel Guitar Forum text size
Can I change the text size here without changing it for everything?
- Don Poland
- Posts: 1196
- Joined: 31 Dec 2004 1:01 am
- Location: Hanover, PA.
- Wiz Feinberg
- Posts: 6103
- Joined: 8 Jan 1999 1:01 am
- Location: Mid-Michigan, USA
- Contact:
Font size controls
Gary;
While you can override the default text (font) sizes on our forum there is no current means of presetting your preference. I don't know if this is something that the software will allow, with plug-ins, or not, but will ask b0b.
While you can override the default text (font) sizes on our forum there is no current means of presetting your preference. I don't know if this is something that the software will allow, with plug-ins, or not, but will ask b0b.
"Wiz" Feinberg, Moderator SGF Computers Forum
Security Consultant
Twitter: @Wizcrafts
Main web pages: Wiztunes Steel Guitar website | Wiz's Security Blog | My Webmaster Services | Wiz's Security Blog
Security Consultant
Twitter: @Wizcrafts
Main web pages: Wiztunes Steel Guitar website | Wiz's Security Blog | My Webmaster Services | Wiz's Security Blog
- Wiz Feinberg
- Posts: 6103
- Joined: 8 Jan 1999 1:01 am
- Location: Mid-Michigan, USA
- Contact:
Firefox browsers can use custom stylesheets, per domain
I have just learned that the Firefox browser that many of us on the Computers Forum are using is capable of using a custom stylesheet (a text file containing directives for controlling fonts, layout, and colors), which can be tailored to a particular domain or URL. This stylesheet would override any styles specified on the designated webpage or website. This is not a drag and drop operation, so I am going to study the details, experiment with it and post my results and maybe some samples.
I will respond in this thread.
I will respond in this thread.
"Wiz" Feinberg, Moderator SGF Computers Forum
Security Consultant
Twitter: @Wizcrafts
Main web pages: Wiztunes Steel Guitar website | Wiz's Security Blog | My Webmaster Services | Wiz's Security Blog
Security Consultant
Twitter: @Wizcrafts
Main web pages: Wiztunes Steel Guitar website | Wiz's Security Blog | My Webmaster Services | Wiz's Security Blog
- Wiz Feinberg
- Posts: 6103
- Joined: 8 Jan 1999 1:01 am
- Location: Mid-Michigan, USA
- Contact:
How to create custom stylesheet overrides in Firefox
As promised, I have researched the methods used to create custom stylesheet overrides, for Mozilla Firefox browsers. I will look into the methods used for Internet Explorer as soon as I find time.
I have tested and published the methods needed to create a custom stylesheet for Firefox browsers, here, on my blog. Read the basics about creating a custom stylesheet there, then come back here and use (copy and paste and edit) the following code sample to make your own custom overrides for the Steel Guitar Forum, or any other forum of you choosing. The custom stylesheet goes into your Firefox > Profile > ... > Chrome directory, as per the instructions on my blog.
You will have to modify certain values in the example, to fit your own preferences. The first item to change is the font-size: 100% part. Increase the number to enlarge the fonts in posts. Because the default stylesheet for our forum also contains a css <em>line-height:</em> declaration you may have to increase that percentage as well (to avoid text overflowing between lines or cutting off the bottoms of letters). Just change the line-height number to be about 25 to 30 percent higher than the font-size.
The other changes I have included change the color of links to common colors and underline them to make them more visible. The last three rules lighten the background shades of the posts slightly, to make them easier to read.
The key to making the overrides effective is the declaration !important. Note how it is used in my example and use it in yours in a similar fashion.
I have tested and published the methods needed to create a custom stylesheet for Firefox browsers, here, on my blog. Read the basics about creating a custom stylesheet there, then come back here and use (copy and paste and edit) the following code sample to make your own custom overrides for the Steel Guitar Forum, or any other forum of you choosing. The custom stylesheet goes into your Firefox > Profile > ... > Chrome directory, as per the instructions on my blog.
Code: Select all
@-moz-document url-prefix(http://bb.steelguitarforum.com/) {
.postbody {font-size: 100% !important; line-height: 130% !important; color: #000 !important;}
A.postlink {text-decoration: underline !important;}
A.postlink:link, A:link {color: blue !important;}
A.postlink:visited, A:visited {color: purple !important;}
A.postlink:active, A:active {color: red !important;}
td.row1 { background-color: #FAFAFA !important; }
td.row2 { background-color: #EBEBEB !important; }
td.row3 { background-color: #DEDEDE !important; }
}
The other changes I have included change the color of links to common colors and underline them to make them more visible. The last three rules lighten the background shades of the posts slightly, to make them easier to read.
The key to making the overrides effective is the declaration !important. Note how it is used in my example and use it in yours in a similar fashion.
"Wiz" Feinberg, Moderator SGF Computers Forum
Security Consultant
Twitter: @Wizcrafts
Main web pages: Wiztunes Steel Guitar website | Wiz's Security Blog | My Webmaster Services | Wiz's Security Blog
Security Consultant
Twitter: @Wizcrafts
Main web pages: Wiztunes Steel Guitar website | Wiz's Security Blog | My Webmaster Services | Wiz's Security Blog