User Links

User Links

Postby Andrew on Sat Jul 26, 2008 5:54 pm

User Links


Image Options

Change Symbol Images:
This changes those small images on your user Links all to one image of your choice. (The image is repeated on each button)

Code: Select all
#user-links a {display:list-item}
#user-links a {list-style:url(-url?-) inside;}
#user-links img {visibility:hidden}


Example:
#user-links a {display:list-item}
#user-links a {list-style:url(http://forums.hi5-world.com/images/user-links.gif) inside;}
#user-links img {visibility:hidden}

Your image size should be around 20x20px for best results.


Add a Button Background:
This will give you a button effect background for each of your user-links

Code: Select all
#user-links a {padding-left:4px; padding-top:4px;}
#user-links a {display:list-item}
#user-links a {background:url(-url?-;}


You image should be exatcly:
163px (width) × 27px (height)

Example:
This is a full example with hover effects included that you can test:

#user-links a {padding-left:4px; padding-top:4px;}
#user-links a {display:list-item}
#user-links img {filter:alpha(opacity=50); opacity: 0.5;}
#user-links a:hover img {filter:alpha(opacity=80); opacity: 0.8;}
#user-links a {background:url(http://www.hi5-world.com/UserLink-Off.gif); background-repeat:no-repeat;}
#user-links a:hover{background:url(http://www.hi5-world.com/UserLink-ON.gif); background-repeat:no-repeat;}
#user-links a{color: #b8d2b8; font-family: Arial Black;
font-size: 11px;
text-decoration:none;}
#user-links a:hover{color: #e6f7e6;}





Text Options

Text Color:

Code: Select all
#user-links a {color: #[color=#FF0000]-color?-[/color];}


-color?-

-color?- = Any Hex code, RGB value or HTML name Color Code
Formats:
(1) Hex code (#FF0000)
(2) RGB value (rgb(255,0,0))
(3) HTML name (red)

Examples:
#profile-name{background-color: #FF0000;}
#profile-name{background-color: rgb(255,0,0);}
#profile-name{background-color: red;}

[Click Here to view list of Color Codes]
http://www.hi5-world.com/ColorCodes.htm

Example:
#user-links a {color: ##FF0000;}



Font Type:

Code: Select all
#user-links a {font-family: [color=#FF0000]-font-family?-[/color];}


-font-family?- = Any Font name

Example:
#user-links a {font-family: Arial;}




Font Size:

Code: Select all
#user-links a {font-size: -size?-px;}


-size?- = Any numeric positive value (or at size: 0px text is not visible)

Example:
#user-links a {font-size: 16px;}



Font Style:

Code: Select all
#user-links a {font-style: -font-style?-;}


-font-style?- = Any of the below options:
normal
italic
oblique


Example:
#user-links a {font-style: italic;}



Font Weight:

Code: Select all
#user-links a {font-weight: -font-weight?-;}


-font-weight?- = Any of the below options:

normal
bold


Example:
#user-links a {font-weight: normal;}



Text-Align:

Code: Select all
#user-links a {text-align: -text-align?-;}


-text-align?- = Any of the below options:

left
right
center
justify


Example:
#user-links a {text-align: center;}



Text-Indent:

Code: Select all
#user-links a {text-indent: -text-indent?-%;}


-text-indent?- = Any number from 0 - 100

Example:
#user-links a {text-indent: 25%;}



Text-Decoration:

Code: Select all
#user-links a {text-decoration: -text-decoration?-;}


-text-decoration?- = Any of the below options:

none
underline
overline
line-through
blink


Example:
#user-links a {text-decoration: underline;}




Visibility Options


Opacity

Code: Select all
#user-links {filter:alpha(opacity=IE??); opacity: FF??;}


IE?? = any integer value from 0 - 100

FF?? = Must be 1/100th of the previous IE?? value.
(or IE?? X 0.01)

Example:
#user-links {filter:alpha(opacity=70); opacity: 0.7;}




Hide User Links Section:
Code: Select all
#user-links {display: none;}




Hide User Link Icons:
Code: Select all
#user-links img {display: none;}




Hide Individual User Links:

Hide Add as a Friend Image
Code: Select all
a[name="&lid=OtherProfile_AddAsFriend"] {display: none !important;}



Hide Send Message Image
Code: Select all
a[name="&lid=OtherProfile_SendMessage"] {display: none !important;}



Hide Leave Comment Image
Code: Select all
a[name="&lid=OtherProfile_AddComments"] {display: none !important;}



Hide Add to Favorites Image
Code: Select all
a[name="&lid=OtherProfile_AddToFavorites"] {display: none !important;}



Hide Edit My Basic Info Image
Code: Select all
a[name="&lid=MyProfile_EditProfileBasic"] {display: none !important;}



Hide View As Another Image
Code: Select all
a[name="&lid=MyProfile_EditCustomize"] {display: none !important;}



Hide Skin my Profile Image
Code: Select all
a[name="&lid=MyProfile_ChooseSkin"] {display: none !important;}



Hide Customize Profile Image
Code: Select all
a[name="&lid=MyProfile_EditNewProfileBasic"] {display: none !important;}



Hides both Invite Friends & Add Applications Image Image
Code: Select all
a[name="&lid=MyProfile_AddWidget"] {display: none !important;}






Background Options
These options affect the "invisible" box area the user-links are encased in.
These options are not usually used, but it can be useful if you have a good imagination.

Choose Background Color:

Code: Select all
#user-links {background-color: -color?-;}


-color?- = Any Hex code, RGB value or HTML name Color Code

Formats:
(1) Hex code (#FF0000)
(2) RGB value (rgb(255,0,0))
(3) HTML name (red)

Examples:
#user-links {background-color: #FF0000;}
#user-links {background-color: rgb(255,0,0);}
#user-links {background-color: red;}

[Click Here to view list of Color Codes]
http://www.hi5-world.com/ColorCodes.htm



Choose Background Image:

Code: Select all
#user-links {background-image: url(-url?-);}


-url?- = Any image url

Example:

#user-links {background-image: url(http://forums.hi5-world.com/images/Background.jpg);}



Background Repeat:

Code: Select all
#user-links {background-repeat: -repeat?-;}


[?] -repeat?- = Any of the below options

[1]repeat : The background image will be repeated vertically and horizontally.
[2]repeat-x : The background image will be repeated horizontally.
[3]repeat-y : The background image will be repeated vertically
[4]no-repeat : The background-image will be displayed only once

Example:
#user-links {background-repeat: no-repeat;}



Background Position:

Code: Select all
#user-links {background-position: -x-% -y-%; background-attachment: fixed;}


Horizontal Position: -x-%
Vertical Position: -y-%

Position Values must be between 0 - 100%

Example:

#user-links {background-position: 20% 65%; background-attachment: fixed;}




Hover Effects

Code: Select all
#user-links:hover {-Code Here-;}


By substituting,

#user-links
for
#user-links:hover .content

All of the above codes, (Background Options, Text Options, Visibility Options), can be used to give a different effect on the target, when the Mouse Pointer is hovered over the object in the User Links Section.

Example:
##user-links:hover {background-image: url(http://forums.hi5-world.com/images/BodyBackground_Hover.jpg);}

This will give you a different background image when you hover over the User Links Section.
Andrew Emmanuel Davis
Owner of:
Image
Image
Image
Image
Image
Image
User avatar
Andrew
Owner of hi5-World
Site Admin
Site Admin
 
Posts: 378
Age: 22
Joined: Wed Jun 25, 2008 5:16 pm
Gender: Male

User Links

by Admin

Admin
 

Apply for a great card today

Postby MSliveFormNew on Sat May 30, 2009 4:23 pm

Hi there!
Compare and apply now for a balance transfer credit card!
Transfer your high balances now!
Apply Credit Card Transfer No Annual Fee
Have a nice day!
BB!




P.S. if you don't want to see this message please write us to no.ads08@gmail.com with subject "NO ADS" and URL of your forum!
Your URL will be immediately removed from the advertising list!
Thank you for cooperation!
User avatar
MSliveFormNew
New Member
New Member|New Member|New Member
 
Posts: 1
Joined: Sat May 30, 2009 4:23 pm
Gender: None specified

Does anyone know how to get rid of faulty spyware?!? unlock

Postby Dennisg on Tue Jan 12, 2010 8:09 pm

How to fix errors in registry after viruses have been removed....my pc was infected by 3-4 trojans....I removed them and now my computer restarts on its own while i am working.. i think this is due to errors in registry due to those viruses.....pls help me... unlock iphone 3g
Dennisg
New Member
New Member|New Member|New Member
 
Posts: 1
Age: 34
Joined: Mon Jan 11, 2010 9:50 pm
Location: France
Gender: Male

My computer won't boot... need help with the startup via ope

Postby Konder on Wed Jan 20, 2010 1:00 am

It said something was infected but it disappeared before i could read it. I use Avast...It may or may not be part of the avast VRBD (Virus Recovery Database) Is this something with Avast or maybe something with my pc?? Can anyone tell me what this is and how to get back to it so I can read what it said. unlock iphone 3g
Konder
New Member
New Member|New Member|New Member
 
Posts: 1
Age: 36
Joined: Wed Jan 20, 2010 12:59 am
Location: UK
Gender: Male

Light programmes for my pc?!?

Postby Jojoking on Wed Feb 03, 2010 5:20 pm

when I scanned my computer with SMADAV anti-virus, my ANSAV anti-virus is working too, and the ANSAV GUARD preference appeared and it can not be closed/stopped forex robot
Jojoking
New Member
New Member|New Member|New Member
 
Posts: 2
Age: 45
Joined: Mon Jan 25, 2010 2:24 pm
Location: USA
Gender: Male

PC INFECTED WITH VIRUS.NOW ITUNES DELETED BEC OF SYSTEM REST

Postby Mardor on Thu Feb 04, 2010 4:41 pm

my computer had the Trojan virus, so i rebooted it and everything is now new, but my sound doesn't work, and when i put the sound blaster CD in, this folder comes up and i don't know how to install it, please help! By the way i tried everything, even opening Device Manager and fixing it from there hydroxycut reviews
Mardor
New Member
New Member|New Member|New Member
 
Posts: 4
Age: 42
Joined: Thu Feb 04, 2010 3:53 pm
Location: USA
Gender: Male

Does my Mac OS X have a virus?

Postby Koobeton on Fri Feb 05, 2010 10:51 am

there are a couple of unusual icons on my desktop. white little windows with a strip of blue. one says: service and the other, winsound. are these trojans. i am having a lot of problems with my computer. hydroxycut reviews
Koobeton
New Member
New Member|New Member|New Member
 
Posts: 1
Age: 40
Joined: Thu Feb 04, 2010 9:20 pm
Location: UK
Gender: Male

Laptop Problems (Mostly keyboard)?

Postby Mardor on Wed Feb 10, 2010 8:48 pm

Need help in how to clear my whole laptop and start fresh... it has a virus hydroxycut reviews
Mardor
New Member
New Member|New Member|New Member
 
Posts: 4
Age: 42
Joined: Thu Feb 04, 2010 3:53 pm
Location: USA
Gender: Male

Song in my iTunes library wont play,please help!!!!?

Postby Qarlcom on Sat Feb 13, 2010 8:08 am

I've had my laptop for approximately two years and all of a sudden it has started to shut down constantly. I downloaded freeware to catch viruses, etc., and it cleaned my laptop up, but the problem still persists. It's really starting to frustrate me!!!!!!! I don't know if this is an overheating problem or what I should do if it's that or an internal problem. Any advice? I really need this fixed as it keeps shutting down while I write my final papers for school! I graduate in two weeks and I really need to fix this NOW! Thanks in advance! unlock iphone 3g
Qarlcom
Member
Member|Member|Member
 
Posts: 11
Age: 28
Joined: Thu Feb 11, 2010 12:29 pm
Location: UK
Gender: Male

I have excellent strength on my wireless connection, yet web

Postby Kondziu on Wed Feb 17, 2010 2:29 am

Hello, I currently bought a computer and i installed all the anti-virus and other software. I want my internet to work but when i go to my hardware files. Ethernet Controller and Bus Controller and 2 other software have a question mark next to them. It says that there is errors installing it. Yes, i uninstalled it and installed it back but it wont work. i still cant go on the internet. btw, i bought the computer in different parts. Like i have HP Procesor and BenQ Monitor. Does this change anything? Please Help me solve this problem Thank you, Bakhti Mirzo forex robot
Kondziu
New Member
New Member|New Member|New Member
 
Posts: 4
Age: 33
Joined: Tue Feb 16, 2010 5:15 pm
Location: UK
Gender: Male

Next

Return to Main Body

Who is online

Users browsing this forum: No registered users and 0 guests

cron