Join MultiplyOpen a Free ShopSign InHelp
MultiplyLogo
SEARCH
Blog EntryAug 18, '09 12:06 PM
by Leigh Ann for everyone
It's kinda plain, kinda boring, and often ignored by many.  But what if we could change all that?  What if we could make the Profile page look just a little more interesting?


Did you ever want to know how to get rid of those plain black borders you see around your Photos of Me when you click your "My Profile" link?  Did you ever want to change the colors and style of the About Me and Contact Information

You can change text size, color, and style and background and borders too without affecting other areas of your page ...


... except for the title areas where it says Photos of Me, Contact Information, About Me, etc.  That is affected by whatever color you put in either .itemboxsub or .cattitle, so I'm not touching that one, but I can give you tips for customizing the other parts of your profile.  Anything in red needs to be edited to suit your needs.
  You can click the image above to see a larger view of some of the things I tried on my profile page.


Any border added to the Photos of Me will be the same for all photos added, so if you have five, all five will have the same border.
  I got this double-border affect by using both border and outline.  The border style and color shows on the inside and the outline style and color shows on the outside.  Outline doesn't show in IE7 (at least), but you still have a nice border from the part of the code that does show.

/*Profile - Photos of Me*/
a#hires img {
border: ??? !important;
outline: ??? !important;
padding: ??px;
}

Then there are the labels, the parts where it says Name, Email Address, Gender, and so on.  I haven't done a lot of experimenting with it, but I'm sure you guys can have fun getting creative.  The font-weight is already set to bold in Multiply's codes, so if you want it a little less thick, you can set it to normal.  I added font-style: italic; to mine to give it a bit more flair.
/*Profile - Labels*/
.label {
property: value;
}
Finally there are the descriptions for the labels, the information you provide.  Again, I didn't go too crazy, but I'm sure you guys can have fun with borders and backgrounds and colors and font styles.
/*Profile - Descriptions*/
.pad6r {
property: value;
}

«EDIT» As Hani mentioned in the comments, when you edit your profile settings, there are some areas that also allow HTML so that you can make Your Profile Page even more unique to you!  Let me tell you, I went hog wild after I found out you really CAN add HTML, so now my profile no longer looks ANYTHING like what you see in the screenshot! «END EDIT»

So now it's time to go
play!
  Have fun!

57 CommentsChronological   Reverse   Threaded
catsmeow1 wrote on Aug 18, '09
thanks...need to bookmark this page
wolvesandrainbows wrote on Aug 18, '09
Excellent !! The one part I never did play with. Thank you for this.

(hahaha at pacman)
snowburst wrote on Aug 18, '09
(hahaha at pacman)
LOL i like it. : )
snowburst wrote on Aug 18, '09
what's funny is that people are going to look at this that i did solely for the purpose of sharing the information with others, and they're going to go look at my profile, and they're going to see that it's back to being plain ol' boring. HAHAHA! except i kept a bit of the border style around the image. debating whether to go back to the two tone look. it IS kinda cool.
wolvesandrainbows wrote on Aug 18, '09
Something I don't always think to do is look at someone profile page, whether it's available or not. I never think of it lol
snowburst wrote on Aug 18, '09
I don't always think to do is look at someone profile page, whether it's available or not.
cuz it's BORRRRRRRRRRRRRRRRRRRIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIING!
snowburst wrote on Aug 18, '09
I mean the look, not what people write about themselves.
snowburst wrote on Aug 18, '09
that black border drove me nuts. that had to go a long time ago. i'm surprised i didn't say something here sooner.
wolvesandrainbows wrote on Aug 18, '09
I'll admit mine is boring. Content and in looks hahaha
meirav wrote on Aug 18, '09
Something I don't always think to do is look at someone profile page, whether it's available or not. I never think of it lol
once again you prove you're not really top league in the nosiness stakes :-)
snowburst wrote on Aug 18, '09
mine is boring. Content and in looks
don't feel bad. mine is nothing to sneeze at either. this tutorial really was for everyone else. except for the photo border where i was totally selfish and did that just for me. LOL
snowburst wrote on Aug 18, '09
meirav said
once again you prove you're not really top league in the nosiness stakes :-)
LOL, let me guess. the profile is one of the first things you look at. hehe. : )
wolvesandrainbows wrote on Aug 18, '09
meirav said
once again you prove you're not really top league in the nosiness stakes :-)
I do tend to draw the line at being nosy when it comes to personal stuff. Otherwise?? hahaha kidding
meirav wrote on Aug 18, '09
okay, so here's my stupid question for the day. I wouldn't mind getting rid of that black border now that you've mentioned it. so I'm looking at this code:

/*Profile - Photos of Me*/
a#hires img {
border: ??? !important;
outline: ??? !important;
padding: ??px;
}

and wondering what sort of thing is supposed to go where the question marks are? colour codes? could I have an example that I could tweak?
snowburst wrote on Aug 18, '09, edited on Aug 18, '09
meirav said
and wondering what sort of thing is supposed to go where the question marks are? colour codes? could I have an example that I could tweak?
border and outline have the same type of code. first the width, then the style, then the color, so it would look like:

border: 1px solid #000000 !important;
outline: 1px dashed #0000ff !important;

that would be a solid black border of 1 pixel width with a dashed blue outline of 1 pixel width around it.

edit: I added !important to the examples here because it's needed for a new border in a#hires img to work.
mraungj wrote on Aug 18, '09
by the way
how can change font it
snowburst wrote on Aug 18, '09
and the padding is to put a little space between the image and the border if you wish. it is optional, like giving a matte background. so it could work well with a background color too, like this:

background-color: #ff0000;
padding: 5px;

that would give a red 5 pixel wide matte background between the border and the image. if you do not add a background color, the background of your itembox would show through between the border and the image
snowburst wrote on Aug 18, '09
mraungj said
by the way
how can change font it
do you mean the link in the welcome box on the home page?

look over at the rail, and you will see a link that says, "Changing the Color of Text/Links". click that, and look for where it says, "'View All' link on itemboxes:" and whatever you do to that will change not only the "view profile" link, but all those links on the home page.
snowburst wrote on Aug 18, '09
meirav said
and wondering what sort of thing is supposed to go where the question marks are?
oh, i forgot to mention, i also suggest that you look under the border tag. i know there's a great tutorial that shows different border styles.

you don't need "outline" to change the border of your photos, but if you choose to use it, it uses the same styles as "border"
snowburst wrote on Aug 18, '09
i know there's a great tutorial that shows different border styles.
CSS BORDER Tutorial

this is the one i was thinking of.
nolver wrote on Aug 18, '09, edited on Aug 18, '09
Sounds very interesting Leigh Ann! Since you brought this up, I wanna take a peek at your profile page ;-)
snowburst wrote on Aug 18, '09
hahaha! i warn you ... it's BOOOOOOOOOOOOOOOORRRRRRRRRRRRRIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIING!!! LOL
nolver wrote on Aug 18, '09
It's not that bad...heheee!
meirav wrote on Aug 18, '09
thanks, snow - this worked even for me :-)
snowburst wrote on Aug 18, '09
meirav said
this worked even for me :-)
LOL

you're welcome! can't wait to see ... because i'm being *ahem* inquisitive. =P
snowburst wrote on Aug 18, '09
yay! pretty blue to match the links!!! : )
meirav wrote on Aug 18, '09
:-)
gabrielal wrote on Aug 18, '09
It is very beautiful :)

...thank you, dear Ann
gabrielal wrote on Aug 18, '09
......and please, what is it ?

"property: value;"


Thank you :)
wolvesandrainbows wrote on Aug 18, '09
property: value; would be things like

font-color: #xxxxxx;
font-style: #xxxxxx;

etc.
snowburst wrote on Aug 18, '09, edited on Aug 18, '09
......and please, what is it ?

"property: value;"


the CSS element is made up of the selector, and its declarations, which are the property and its value. it is written like this:

selector {
property: value;
}


selector = what part we want to change (like the header, footer, rail, etc.)
property = what we want to change about that part (like the background, border, color of the font, etc)
value = how we want to change it (how big, which color, etc)

patti gave you some good examples of properties and their values ... except ...

property: value; would be things like

font-color: #xxxxxx;


we do use font-style and font-size and font-family, but when it comes to the color of the font, we just use color.

snowburst wrote on Aug 18, '09
selector {
property: value;
}
i've seen some tutorials here where it's written like this:

selector {
%elements
}

and while that may be understood by someone who knows code, i find it confusing, so i like to break it down into the proper syntax, using all the symbols we're supposed to use, including the colon and the semi-colon. that's why when i write a CSS element example, i do it the way i quoted it.
gabrielal wrote on Aug 18, '09
Thank you very much...now I understand :))
dantcer wrote on Aug 18, '09
Thanks Leigh Ann. :) Should this be tagged something?
snowburst wrote on Aug 18, '09
i will tag it. was just very tired and tried to get it out before i fell face first on my keyboard.
snowburst wrote on Aug 18, '09
oh, shoot. and i just said that out loud. LOL
pepperjak wrote on Aug 18, '09
WOW! You found more to designate than you did when you commented on How do you change font elements of Profile page
COOL...
snowburst wrote on Aug 18, '09
LOL i think i had the frame done even back then, but the person only asked for fonts. ; )

but the outline is something i only learned about a few months ago. i don't normally do things that don't work in IE unless it has a close enough equivalent, and in this case, you can still see the "border" even if you can't see the "outline" so i'm still good.
iium2000 wrote on Aug 18, '09
good job, another area we didn't explore it through..

i already have colors/pictures in my profile page.. i even put a video in the profile page since 2006..
it is called HTML..

that i think people should explore that too..
snowburst wrote on Aug 18, '09
when i joined, the profile page didn't allow HTML to be added.
iium2000 wrote on Aug 19, '09
didn't allow HTML to be added
some items you cannot add HTML till now.. for example "the contact information"

but some allow HTML.. the "about me" "social" and "professional"
you need to try out HTML codes until you get what you want

the last picture, i was still a trainee or a houseman at HRPZII hospital.. and 30kg less than the current weight..

>: )
iium2000 wrote on Aug 19, '09

the last picture, i was still a trainee or a houseman at HRPZII hospital.. and 30kg less than the current weight..
i was refering to the picture inside my profile picture..
to see it, visit my site and click "view profile"

just for clarification, to some people here..
snowburst wrote on Aug 19, '09
cool. another way you can play with your profile. thanks hani.

as for me, i'm happy to keep mine simple and boring because i'm not really trying to attract outside attention. i just thought i'd share this idea with others who might like meeting new people.
iium2000 wrote on Aug 19, '09
i'm not really trying to attract outside attention.
everyone has her/his own favourite cup of tea..
good job >: )
blankcanvasmd wrote on Aug 19, '09
I have no computer css code knowledge....I do not know to how to use this...wish I understood it...I would love to jazz up my page...
snowburst wrote on Aug 19, '09
.I do not know to how to use this...wish I understood it...
i see you use Custom Colors (you have chosen the Clean theme). are you able to follow the Beginner's Guide ~ One Step Beyond Custom Colors? in the main description before the images, i included examples of both color and border codes for filling in. i can add simple versions of these codes to that tutorial, since it's something else custom colors doesn't touch, but there would still be the matter of filling in the question marks.
snowburst wrote on Aug 19, '09
I do not know to how to use this...wish I understood it..
well, i added the codes to the beginner's guide, and they are a little more specific over there ... except for the image border. i can't really get any more specific than what i offered above. but i do explain about writing color and border codes in the main description of beginner's guide and offer links for other places that can help with borders and colors ... in case that helps.
crinkster wrote on Aug 19, '09
i added the codes
you're just a buzz saw...I hope everyone appreciates all the work you do...I want to thank you for your dedication to helping others. Amazing.
snowburst wrote on Aug 19, '09
you're just a buzz saw..
LOL well, i've been called a pit-bull before, but buzz saw is a new one. ; )

it's just that these two tutorials have two different goals. this one is for people who like experimenting with codes, trying to see what different things do, learning neat tricks for their pages or for theme design, so the codes are as general as possible. in the beginner's guide, i tried to make the codes as copy/paste friendly as possible so properties i didn't add here, i added there, like color and font-size and font-style. but i can't supply all the possible colors and sizes everyone might want so, unfortunately, even the codes in the beginner's guide are still not perfect copy/paste codes.
snowburst wrote on Aug 22, '09
but some allow HTML.. the "about me"
as i said before, when i first signed up, i tried to add HTML to the about me, and it wouldn't accept, even though all i had were images. but since reading this, i decided to try again, and wouldn't you know ... it accepts my images now. go figure. thanks hani for letting me know it works.
surveysandlovee wrote on Sep 30, '09
Hey, um, how to take out 'view profile' in welcome box?
iium2000 wrote on Sep 30, '09
Hey, um, how to take out 'view profile' in welcome box?
in your personal site.. click on "customize my site" under your profile/logo picture.. then click the "Edit" button of the welcome box.. un-tick (remove) the option to display a link to your profile..

but in Group sites, that option may not be available, so you may resort to CSS coding:

div.viewmore a[href="/profile/group"]{
display:none;
font-size: 0px;
}

>: )
surveysandlovee wrote on Sep 30, '09
in your personal site.. click on "customize my site" under your profile/logo picture.. then click the "Edit" button of the welcome box.. un-tick (remove) the option to display a link to your profile..

but in Group sites, that option may not be available, so you may resort to CSS coding:

div.viewmore a[href="/profile/group"]{
display:none;
font-size: 0px;
}

>: )
Thanks a bunch!
snowburst wrote on Sep 30, '09
Thanks a bunch!
but just because the link is removed it does not mean the page isn't accessible. the page can still be viewed if the URL is typed directly into the address bar. just thought i'd let you know.
surveysandlovee wrote on Sep 30, '09
but just because the link is removed it does not mean the page isn't accessible. the page can still be viewed if the URL is typed directly into the address bar. just thought i'd let you know.
Oh. :( So there is no way of removing it Completely?
snowburst wrote on Sep 30, '09
you can remove the link, but the page is still there.
dantcer wrote on Oct 15, '09
Customize/Edit - there's a tick box to remove the link to your profile that's in your welcome box. You don't need to use CSS to hide it. However, your profile is accessible via the url so what you post on your profile can still be seen by those that have permission to see each sections content. Set your permissions first before hiding the link.
Multiply.Design
Join this Group!Add to My Yahoo
Report Abuse











~HAVE MORE QUESTIONS~
~FIND ANSWERS HERE~
« Need Extra Help Making Your Theme? Theme Generator « What You Need to Know Admin Notes Ads Copyright Group Guidelines Terms « Designing Your Theme Backgrounds Banners Base Themes Borders Colors CSS Basics CSS Selector Guide "Customize My Site" HTML Basics Image Tips Margin & Padding Notes in CSS & HTML Opacity Page Layout Position & Float Quick Reference Theme Generator Transparency « The Parts of Your Page Ads Anon_View Calendar Chat Box Contacts "Customize My Site" Footer Guestbook Header-Global Nav Headshot & Userlogos Lists MP Logo & DD Menu Photo Albums Polls Posts Profile & Mini-Pop Quote Rail Replies Reviews SubNav & Vertical Nav Table View Tagged Box Title View History « More Customizing Tips Animated Arrows & Bullets Audio-Video-Media Before & After Buttons CSS-HTML Combo Cursors Dividers Favicon Flash Generator Gradient Groups Hotlinking Hover Icons Image Editing Image Map Image Tips Javascript Links Navigation Pop-Ups & Drop-Downs Premium Scroll Boxes Search Box Signatures & Logos Smileys Tables Text & Fonts Widgets & Gadgets « Beginners Welcome Getting Started Theme Generator « How Do I Fix This? Quick Fix « Get Graphics Animated Arrows & Bullets Backgrounds Banners Buttons Dividers Flash Gradient Icons Images-Graphics Signatures & Logos Smileys « Multiply 4.0 About Multiply Online Sellers Staff Blog Terms Useful Groups « Odds & Ends Add-Ons Bookmark Bookmarklet Browsers Drag & Drop Free Notepad Quick Reference RSS Screenshot Search Box Software Tools Translator Userscripts Validator Web Developer « Still Can't Find What You're Looking For? Group Guidelines See Posting Guidelines in the
Welcome Box on the Home Page




Before you post, read the POSTING GUIDELINES!

Microsoft® Translator


Helpful links: