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!
> Custom Background
539336976_Inactive
(New Admin)
12/11/2007 2:40 AM EST
:
Custom Background
link
539336976_Inactive
Posts: 5
Getting Started!
Okay, I am just not good at figuring this stuff out.
I am attempting to learn how to customize my backgrounds and was searching through the posts and found some good entries. Did a whole lot of cutting and pasting and i cant ever get any leverage. All i get is an error message.
I want to figure out how to do this. The image i was toying with is:
<a href="
http://photobucket.com
" target="_blank"><img src="
http://img.photobucket.com/albums/v234/Locust00/210OrgrimmarFallsAsleep.jpg
" border="0" alt="Photo Sharing and Video Hosting at Photobucket"></a>
What i did manage to do was make my entire background white.
I do not know for sure if this is the one i wanna stick with but i cant get around the coding to play with it. Any advice or links on a how to for programming retards?
Top
•
Bottom
Rosary_KT
(Guild Admin)
12/12/2007 9:46 AM EST
:
RE: Custom Background
link
Rosary_KT
Posts: 1072
Zomgawsh Poster
For a background, you need to remove the hyperlink and html coding.
All you need to link to your background is this:
http://img.photobucket.com/albums/v234/Locust00/210OrgrimmarFallsAsleep.jpg
Top
•
Bottom
539336976_Inactive
(New Admin)
12/14/2007 1:04 AM EST
:
RE: Custom Background
link
539336976_Inactive
Posts: 5
Getting Started!
Thank you kindly for the reply, i got the link to work.
Is there any way that i can avoid the tiling and get the picture to stretch once in the background?
Top
•
Bottom
Bejewels
(New Admin)
1/3/2008 2:43 PM EST
:
RE: Custom Background
link
Bejewels
Posts: 475
Fingers of Fury!
Another question in this area..Where do you put the code for Fix backgrounds? I am using a theme template as a base, but then adjusting it to how I want it ...
I have tried putting it in my center Custom HTML box with it check enable at the bottom.. Doesn't work..
Top
•
Bottom
Rosary_KT
(Guild Admin)
1/7/2008 8:39 AM EST
:
RE: Custom Background
link
Rosary_KT
Posts: 1072
Zomgawsh Poster
Dominion_GM said:
Thank you kindly for the reply, i got the link to work.
Is there any way that i can avoid the tiling and get the picture to stretch once in the background?
add this css to your background property:
no-repeat
That will keep it from repeating. If you want to position it in a certain place you can add top, left, right and bottom to that.
example:
body {
background: url('image.jpg') top left no-repeat;
}
You can also 'stick' the background so that it doesn't move when the page is scrolled with this css:
background-attachment: fixed;
After that, if you still want to position it further you can add margins like this:
margin: 10px auto 50px auto;
The first number is how far from the top of the page you want it, the second value is the right side, bottom and then left side (it goes clockwise). Auto means that the image will center on the left and right sides but you can assign a number value if you want it in a certain place.
@bejewels - you need to put it in the body portion of a custom stylesheet. the templates don't have a spot for this.
Top
•
Bottom
wheatleyim
(New Admin)
3/22/2008 6:50 AM EST
:
RE: Custom Background
link
wheatleyim
Posts: 7
Getting Started!
Rosary_KT said:
Dominion_GM said:
Thank you kindly for the reply, i got the link to work.
Is there any way that i can avoid the tiling and get the picture to stretch once in the background?
add this css to your background property:
no-repeat
That will keep it from repeating. If you want to position it in a certain place you can add top, left, right and bottom to that.
example:
body {
background: url('image.jpg') top left no-repeat;
}
You can also 'stick' the background so that it doesn't move when the page is scrolled with this css:
background-attachment: fixed;
After that, if you still want to position it further you can add margins like this:
margin: 10px auto 50px auto;
The first number is how far from the top of the page you want it, the second value is the right side, bottom and then left side (it goes clockwise). Auto means that the image will center on the left and right sides but you can assign a number value if you want it in a certain place.
@bejewels - you need to put it in the body portion of a custom stylesheet. the templates don't have a spot for this.
i am using
body {
background: url('http://www.axiomfiles.com/Files/243126/untitled-1.jpg') top left no-repeat;background-attachment: fixed;
}
right now, but when i add anything to my custom css tab my page gets jacked up. is there anywhere else i can put this code to fix my page.
right now i have it set to just repeat image through regular options, but it doesnt stay static and it repeats, i dont want that ;(
www.moiriaos.com
@guildportal
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%