Contact InfoText OptionsText Color: - Code: Select all
#contact-info {color: -color?-;}
-color?- = Any Hex code, RGB value or HTML name Color Code
(As described earlier in this page)Example:#contact-info {color: #
#FF0000;}
Font Type: - Code: Select all
#contact-info {font-family: -font-family?-;}
-font-family?- = Any Font name
Example:#contact-info {font-family:
Arial;}
Font Size: - Code: Select all
#contact-info {font-size: -size?-px;}
-size?- = Any numeric positive value
(or at size: 0px text is not visible)Example:
#contact-info {font-size:
16px;}
Font Style: - Code: Select all
#contact-info {font-style: -font-style?-;}
-font-style?- = Any of the below options:
normal
italic
obliqueExample:#contact-info {font-style:
italic;}
Font Weight: - Code: Select all
#contact-info {font-weight: -font-weight?-;}
-font-weight?- = Any of the below options:
normal
boldExample:#contact-info {font-weight:
normal;}
Text-Align: - Code: Select all
#contact-info {text-align: -text-align?-;}
-text-align?- = Any of the below options:
left
right
center
justifyExample:#contact-info {text-align:
center;}
Text-Indent: - Code: Select all
#contact-info {text-indent: -text-indent?-%;}
-text-indent?- = Any number from 0 - 100
Example:#contact-info {text-indent:
25%;}
Text-Decoration: - Code: Select all
#contact-info {text-decoration: -text-decoration?-;}
-text-decoration?- = Any of the below options:
none
underline
overline
line-through
blinkExample:#contact-info {text-decoration:
underline;}
Visibility OptionsOpacity- Code: Select all
#contact-info {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:#contact-info {filter:alpha(opacity=
70); opacity:
0.7;}
Hide entire Contact Info section- Code: Select all
#contact-info {display: none;}
Hide "Contact Info" Title: #contact-info .box_profile_info_small_heading {display: none;}
Hide all "Normal Text" in this section: #contact-info .box_profile_info_small_content {display: none;}
Background OptionsThese options affect the "invisible" box area the Contact Info section is 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
#contact-info {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:#contact-info {background-color:
#FF0000;}
#contact-info {background-color:
rgb(255,0,0);}
#contact-info {background-color:
red;}
[Click Here to view list of Color Codes]http://www.hi5-world.com/ColorCodes.htmChoose Background Image:- Code: Select all
#contact-info {background-image: url(-url?-);}
-url?- = Any image url
Example:#contact-info {background-image: url(
http://forums.hi5-world.com/images/Background.jpg);}
Background Repeat: - Code: Select all
#contact-info {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:
#contact-info {background-repeat:
no-repeat;}
Background Position:- Code: Select all
#contact-info {background-position: -x-% -y-%; background-attachment: fixed;}
Horizontal Position:
-x-%
Vertical Position:
-y-%
Position Values must be between
0 - 100%Example:
#contact-info {background-position:
20% 65%; background-attachment: fixed;}
Hover Effects- Code: Select all
#contact-info:hover {-Code Here-;}
By substituting,
#contact-info
for
#contact-info
:hoverAll 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 Contact Info.Example:#contact-info
:hover {
background-image: url(http://forums.hi5-world.com/images/Background_Hover.jpg);}
This will give you a different background image when you hover over the Contact Info
Targeted Text EditingAll of the above
"Text",
"Visibility" and
"Hover" options can be used to alter the
Headings and
Normal text individually.
Edit all "Bold Headings" in Contact Info: - Code: Select all
#contact-info .box_profile_info_small_heading {-code?-;}
Replace
#contact-info
for
#contact-info
.box_profile_info_small_headingExample:#contact-info
.box_profile_info_small_heading {font-weight:
normal;}
Edit all "Normal Text" in Contact Info: - Code: Select all
#contact-info .box_profile_info_small_content {-code?-;}
Replace
#contact-info
for
#contact-info
.box_profile_info_small_contentExample:#contact-info
.box_profile_info_small_content {font-size:
16px;}