Saturday, December 08, 2007

U.S.A.







Our local pages:
^^A trip back in time^^
  • Join My ICQ Group:
    Michigans Little America

Welcome


 
To post messages to our group please bookmark the following URL in your favorites. ~Thank You~
http://DetroitFriendRomance.multiply.com
Home since Nov. 4, 2001
This counter provided for free from HTMLcounter.com!Hits today
Download CC leaner 1.23.160 From File Hippo
Get Firefox!
 
Free remotely hosted message boards (forums) - Runboard.com

Panda ActiveScan - Free Online Virus Check 
Image hosted by Photobucket.comManagement TeamImage hosted by Photobucket.com

Thursday, November 22, 2007

Welcome



 

 


 

 


Drama Free Zone


This will be a place where we can relax and have fun creating tags that express our desire for PEACE!

Copyrights:

Rules:

Terms Of Use:

Please respect all members and refrain from negative posts.

We support GILD artists and allow the use of licensed images here. Please follow their terms of use and make sure your license number is visible on your tag.

We are an equal opportunity group.

Blank applications will be denied to protect the intregrity of our group.


 
 
HTML Layout & websets
 Copyright©2005 IceQueen
 
 

Monday, November 12, 2007

Welcome

Image hosting by Photobucket

Welcome back

Yes we are back, will be better then before. We will strive to keep this group as it once was: A copyright abiding safe place where you can relax, make websets/ receive websets for your groups. We will not tolerate illegal activity here.

Attention former Management:

If you were a former member of the management team and wish to "reclaim" your position, please e-mail the current management team to discuss your previous role and the possibility of your re-enstatement...

E-mail Queenie

Ownership will not change at this time.

This group will once again be geared to providing premade and requested websets for your group pages...

Page design ©2006 Queenie All Rights Reserved
Image in header © Anniebel - www.anniescorner.net

Rules

Image hosting by Photobucket

Please read these rules, and respond to THIS thread to let us know that you fully understand!

1. Please be aware; NO copyright material or pirated software will be allowed or discussed on the message boards.

2. You will be allowed to post sig tags as part of your signature in your post, but not as a request or an offer. Those won't be allowed here.

3. NO bashing of members, no drama and no arguing will be tolerated.

4. All members will have their messages moderated at first; the management will change your settings to auto-accept all messages after a short period of about a week or so.

5. You will be allowed to post your own websets / html codes, as long as you do NOT use artist images in your set without permission!

6. Finally, rules may change with or without notice, and we expect all members to respect and follow these rules without complaint!

 

Thank you for reading! Please understand that we wish to provide a friendly atmosphere and a copyright safe zone, and will not allow any illegal activity that will get the group shut down again. This will NOT be tolerated!


If you have any questions about offering websets, or about a particular artist, feel free to email management! Just click on their names below!

Queenie

Page design ©2006 Queenie All Rights Reserved
Image in header ©Anniebel - www.anniescorner.net

Sunday, October 21, 2007

Links

TechGear007

US Department of Agriculture

Quizilla Quizzes - Fun Quizzes

SparkLife Quizzes - Loads of quizzes to take on left hand side of page

Thursday, September 27, 2007

How to create hover effects

What is hovering ?
It's when you move your mouse over certain parts of the page say a link and it changes color or someones headshot and it pops out at you or when you go to type a comment and a scary image pops up that's hovering.

So you want to know how to make things change when you hover over them I know you do it's fun to have different effects on your page.
Hovering or hover effects are so easy to do all you do is get the selector you want to change on hover and put :hover after it eg .itembox (boxes on your page) will be .itembox:hover or .replybox will be .replybox:hover
Note --- > :hover must be underneath or after or it wont work

Anything
and I mean anything can have a hover effect
try this one for the reply box
.replybox{
border: 1px solid #fff;
background-image:none;
background-color:blue;
}
.replybox :hover{
border: 1px solid #9FB563;
background-image:none;
background-color:#000;
}
or this one for where you type
.replybox textarea {
background-color:#000;
color:#fff;
}
.replybox textarea :hover{
background:url(http://tinyurl.com/6yyxg9);
background-repeat:no-repeat;
background-position:bottom center;
}

Links just to be confusing are slightly different but still have :hover
a:link{
color:#BABABA;
}
a :hover{
color:#C3C3C3;
}
I won't put a load of examples as all you really need is :hover
So there you go, now you know anything can have a hover effect when the mouse moves over it no script needed nothing fancy just :hoverRemember it will only be the part the mouse is over that changes not everywhere just the part the mouse is over

Make sure text size is the same on :hover and borders the same width or you will have things popping and moving all over the place ..unless you like them like that in which case have a little fun and make them different on purpose

Edit updated:::
It's not magic. It's in the css -- Snowburst

Thanks to snowburst for these
Each one of these will hover a different effect
(see the little letters) try them and see what happens
/*hover on bold text*/
b :hover {
color:#087705;
}
/*hover on italic text*/
i :hover {
color:#0091FF;
}
/*hover on underlined text*/
u :hover {
color:#F5B2C2;
}
/*hover on strikethrough text*/
s :hover {
color:#A7A7A7;
}

As said text doesn't need to be a link for a hover effect
check this link out it's a try it editor for hover effects use some of the code from above ..have a play see what you can do

post restored