Home
Mottie's Help Site
Resources
Support Tickets
Sign Up!
•
Login:
Password:
Save
New User?
Forgot?
Support
Top Mods!
Forum Module - Media
by Mottie
1
2
3
4
5
Forum Module - Media v5
by Mottie
Description
This mod allows you to add a YouTube video and change the player styling along with other options. Also, you can easily add a mp3 audio file using the basic Google mp3 player
or a player that can easily be styled (Wordpress player)
Please see
this post
for instructions.
Average Rating
1
2
3
4
5
To install a mod on your GuildPortal site, open your Control Panel and select Site Mods, then Get Site Mods.
Mail Notification
by Mottie
1
2
3
4
5
Mail Notification v6
by Mottie
Description
This mod opens a popup to notify you if you have a new mail message. It was written for users who wish to hide their top menu bar (state bar/log in bar). Or if you just want a bigger message telling you that you have mail. I've set it up to open either a growl window (timed popup) or a facebox (popup you have to close).
For more information on the custom variables, please see
this post
.
To style the growl window (pictured above), use the "Growl Window Styling" Mod or refer to
this post
.
To style the Facebox popup window, please refer to
this post
.
Average Rating
1
2
3
4
5
To install a mod on your GuildPortal site, open your Control Panel and select Site Mods, then Get Site Mods.
Wowhead Search
by sonofsamedi
1
2
3
4
5
Wowhead Search v5
by sonofsamedi
Description
Just a simple import from the Wowhead website to allow in-site searching.
taken from
Wowhead goodies for your site.
Average Rating
1
2
3
4
5
To install a mod on your GuildPortal site, open your Control Panel and select Site Mods, then Get Site Mods.
Event Signup/Withdraw Button
by Mottie
1
2
3
4
5
Event Signup/Withdraw Button v3
by Mottie
Description
******************************************
The signup button has changed, so
this mod is no longer needed
******************************************
Make your Event Sign Up/Withdraw button more prominent.
All this mod does is adds a css class to the button, you can modify everything else!
Before
After
Average Rating
1
2
3
4
5
To install a mod on your GuildPortal site, open your Control Panel and select Site Mods, then Get Site Mods.
Signup Status Color
by Mottie
1
2
3
4
5
Signup Status Color v5
by Mottie
Description
This mod will add CSS classes to the character status, so you can set the color yourself with the CSS and the script will do the rest. Within the script, you can set it to just color the Status column or the entire row. This is what it will look like:
*Note: this is an old screenshot, but the code still works
Average Rating
1
2
3
4
5
To install a mod on your GuildPortal site, open your Control Panel and select Site Mods, then Get Site Mods.
Admin Forums
Welcome to the GuildPortal Help Community! These forums are for admin-to-admin help.
Available Forums
Forums
:
Pimp My Site!
> Welcome, Name! Font Color Incorrect
538924500_Inactive
(New Admin)
10/1/2007 1:42 AM EST
:
Welcome, Name! Font Color Incorrect
link
538924500_Inactive
Posts: 874
Zomgawsh Poster
This has been bothering me for a while and I just can't seem to put my finger on what's causing the problem. I'd really appreciate any insight people might be able to give me. Here's a link to the site in question:
Clan Steinhammer
At the top of the guild portal page in the GP nav/account/login bar there is a portion of it that says "Welcome, GPaccountname!", this keeps changing on me for some reason. When I first built the site it was a light grey/white like the normal content font color is set to be. Then one day it changed to black and I was not able to figure out what was causing it, but as I was still tinkering with the site I figured I'd find it eventually. Wrong! (Darnit Jim, I'm an artist not a coder!) Anyhow, the site's structure is finished and I havn't messed with the CSS code in months, and last week it changed back to the correct color for a day (be still my beating heart) and then changed back to black the next morning.
I've looked through and used the search feature, but I couldn't find anything that addressed this issue, even though I notice a few other guilds have a similar problem. Is this something that's a result of (and can be fixed by) CSS or is it something else?
Thanks in advanced for any help!
~Hollis
Top
•
Bottom
Rosary_KT
(Guild Admin)
10/1/2007 3:43 AM EST
:
RE: Welcome, Name! Font Color Incorrect
link
Rosary_KT
Posts: 1072
Zomgawsh Poster
Not really sure what is changing the color, but try adding this to your stylesheet (with your own hex color of course):
.StateBar{
color: #fff
}
Just be sure to check all of your pages afterward, as I don't know what else that class controls.
Top
•
Bottom
Everdark
(MVP)
10/1/2007 4:37 PM EST
:
RE: Welcome, Name! Font Color Incorrect
link
GuildPortal MVP
Everdark
Posts: 3918
Zomgawsh Poster
Have you played around with the Link Color in Styles and Colors, Page Styles?
I know it changes the colors of some in that bar, although I can't test without disbanding on my own site.
"The person who says it cannot be done should not interrupt the person doing it."
Everdark (T), Evadarr, Nevinn (AC), Soninn, Croninn, Zakarr, Avirded (SC)
Top
•
Bottom
538924500_Inactive
(New Admin)
10/2/2007 1:43 AM EST
:
RE: Welcome, Name! Font Color Incorrect
link
538924500_Inactive
Posts: 874
Zomgawsh Poster
Rosary, I tried that yesterday and it doesn't seem to have changed anything site-wide. Thanks though!
Everdark, yep I have all those set to what they should be and it still seems to be overriding them with the black font. Though the fact that I have CSS enabled should override anything I enter in on that page, I figured it couldn't hurt to make sure they all match.
This is probably just me being a perfectionist but it really bugs me that that one little thing is wrong! Gah! It'll work out somehow. I hope!
Top
•
Bottom
Rosary_KT
(Guild Admin)
10/2/2007 8:28 AM EST
:
RE: Welcome, Name! Font Color Incorrect
link
Rosary_KT
Posts: 1072
Zomgawsh Poster
The css that I posted only changes text colors, not hyperlink colors.
It does work. I tested it on your website with webdev. Webdev allows me to edit css realtime so that I can see the result without making changes on the server.
The css code you placed in your style sheet is not the same as what I suggested.
You have:
.StateBar{
font-color:#D6D6D6
color:#D6D6D6
}
and it should be:
.StateBar{
color:#D6D6D6;
}
Yours does not work because it is written wrong.
Top
•
Bottom
538924500_Inactive
(New Admin)
10/3/2007 1:42 PM EST
:
RE: Welcome, Name! Font Color Incorrect
link
538924500_Inactive
Posts: 874
Zomgawsh Poster
Not really sure what is changing the color, but try adding this to your stylesheet (with your own hex color of course):
.StateBar{
color: #fff
}
Ahh, I see now, thanks for setting me straight. I'd copied it from your previous post and didn't notice it was missing the semi-colon (I threw in the font color on the off chance that'd work when it didn't go the first time). That fixed it right up.
Top
•
Bottom
Rosary_KT
(Guild Admin)
10/4/2007 4:56 AM EST
:
RE: Welcome, Name! Font Color Incorrect
link
Rosary_KT
Posts: 1072
Zomgawsh Poster
semi-colon is not needed when there is only one property assigned to a selector. So what I wrote is correct syntax. I try to make it a habit of always using semi-colons anyway as not to risk leaving one off that is necessary. While the former displays fine in browsers, leaving the semi-colon off when there is only one property, is correct syntax.
Either way will display correctly:
.StateBar{
color:#D6D6D6;
}
**this one is correct
.StateBar{
color:#D6D6D6
}
When there is more than one property in a selector list, they do need to be separated with a semi-colon. (note that I added other properties just to demonstrate a point here at this forum, you shouldn't need to use that for your website)
Either of these will display correctly:
.StateBar{
color:#D6D6D6;
background:#fff;
text-align:center;
font-family:verdana, tahoma;
}
**this one is correct
.StateBar{
color:#D6D6D6;
background:#fff;
text-align:center;
font-family:verdana, tahoma
}
Notice I changed the property from font-color to color because font-color is not in the
list of font properties at w3schools
, it is actually a
text property
. You can read more about syntax at
w3schools
.
Top
•
Bottom
Admins Online
There are
members online.
Updating...
{1}
##LOC[OK]##
{1}
##LOC[OK]##
##LOC[Cancel]##
{1}
##LOC[OK]##
##LOC[Cancel]##
Loading.....
So-and-so has logged on!
disable
0
Purple Dragon (Public)
Guild Chat
0
0
Member Detail
Request Chat
Visit Site
Visit Wall
Send Mail
Admin
%title%
%message%