This repeats the information from our "Making the Most of Your Profile in Beta" document. However, this version is probably going to be updated more frequently - simply because it's easier to do so. If you're interested in this topic, please subscribe to my Blog. Then, you'll be notified on your My Eons page every time I update this document. Please let me know - via the comments, below - how this document is working for you. I'll try to incorporate your feedback to make it as clear and foolproof as possible.
Page Backgrounds
In original Eons, you would typically install a color or photo in the background of your profile page via a line of CSS code that looked something like this:
body {background-color: #ffccd3;}
or body {background: #ffccd3;}
or body {background: url(http://photobucket…);}
This code can work in Beta, too, but to look its best, it will require a couple of alterations and additions.
First, if your code uses “background-color” like the first item above, you will probably see blue at the top of the page instead of the color you chose – which can be seen a bit further down the page.
That’s because New Eons uses its own background image. To correct this problem, use “background” (as shown in the second example, above) rather than “background-color.” (This is shorthand CSS that, by default, sets the background image to “none”.)
One of the more prominent features in the Beta site is a rounded-corner container that sits between the background of the page and the foreground of your profile. This container sits above your original Eons background. The frame is opaque and the interior has its own background color – by default, white. There are many ways to deal with this frame. Here are a couple of approaches we’ve experimented with:
1. Make the container transparent instead of opaque. Add the following to your existing CSS code. To make this simple, we suggest you copy the following in its entirety at the end of your code.
<style type="text/css">
#cont-subnav {background:transparent;}
#cont-mainbody {background:transparent;}
#footer {background:transparent;}
</style>
2. Change the container’s background color (or image) instead of/in addition to the page background color (or image). Instead of targeting ‘body’ you will target ‘#mainbody’ – like this:
#mainbody {background-color: #ffccd3;}
or #mainbody {background-image: url(*) repeat;}
(* is the URL of your background image – if the image is stored on Eons, you can copy the URL from the “share this” box.)
Depending on whether or not the color blue in Beta goes with your color scheme, you may want to change the page (body) background, too. To avoid having to change the menu font color (currently, white), we suggest going with a dark background color, like:
body {background: #7f6669;}
Section Styling
In original Eons, light gray boxes defined sections of the Profile page. Inside the gray-bordered box, there was a gold title and some data.
Section Headings and Titles
In both versions of the Profile page, each section has a title. The title was - and still is - a ‘h2’ element. Your CSS codes might have set the background or color of these titles. For example:
h2 {background-color: #af3; color: #008;}
Although the Beta version still uses h2 elements, there is now a "header" element that encloses the h2 element and it's the "header" element that has the opaque, light purple background.
The following change will properly target just the h2 element (The .header addition is necessary due to the specificity rules of css):
.header h2 {background-color: #af3; color: #008;}
However, this change does not satisfy our intent. We don’t really want any light purple, do we? So let’s set the background color of whole header with the following code (substitute your favorite color combination):
.header {background-color: #af3; color: #008;}
(For now, we may need both of these last two modifications - above - to get the job done. In the very near future – before the Beta is released, the latter modification will be sufficient.)
Section Backgrounds and Borders
The more advanced css experts out there might have attached styles to .profile-chunk - a div element that enclosed each section. The target name has changed - it is now, simply, ".section". For now, duplicate your "profile-chunk" rules - substituting "section" for "profile-chunk." When we exit Beta, you can delete the old "profile-chunk" rules.
Beta provides these new and useful targets for styling sections:
.header – targets the block that contains a section title (default is light purple with dark purple text and a 1-pixel bottom border)
.body – targets the remainder of a section
.section – targets an entire section, wrapping both header and body.
Color or background properties (e.g. “color”, “background-color” and/or “background-image”) are relatively safe to play with. For example, on my profile, I set the background color of my section bodies with the following code, which creates a nice, readable backdrop for the text, while allowing my page background to peek through:
.body { background-color: #ffe; }
We don’t recommend changing the font size, because it is best to keep the font size in line with the rest of Eons and allow people who need larger fonts (or who can tolerate smaller fonts) to select the font size with their browser. Other font properties are fair game.
Borders are a popular addition but, due to the css code that is required to keep user-posted images and other objects in check (so they don’t bust out of their sections and break the entire layout of the page), care must be taken to ensure that the width of the available space (for text and other content) does not change.
Our styles for the Beta version of Eons include 10 pixels of left and right padding in “.body”. If you put left and/or right borders on either “.section” or “.body”, be sure to subtract the width of these borders from the padding on “.body”. For example, to put a 1-pixel black border around every section, you would do this:
.section { border: 1px solid black; }
.body { padding-left: 9px; padding-right: 9px; }
If the border is 2 pixels wide, the padding would be reduced to 8 pixels - and so on.
Special Section: The Member Card
At the top-left of the Profile page, directly under the banner, is a section that we call the "member card." It has it's own background - a yellow fade with a dark yellow border. To get rid of this background, add the following rule:
.cont-member-card { background:transparent;}
By the way, with css, there's usually more than one way to accomplish a task. In this case, I might have used "background-image: none;" or "background: none;" ...all would have the same result
Banners
In original Eons, banners were 940 pixels wide (give or take a few) and 100 pixels high. There wasn’t a lot you could do other than provide an image.
In New Eons, banners are 974 pixels wide and 100 pixels high. …Or whatever you want, within reason.
Use this piece of code in your <style> section if you have a 940x100 image that you want to use in your New Eons profile.
#profile-banner {
background-position: center center;
background-repeat: no-repeat;
}
Or, if you have a repeated background image that, for whatever reason, looks best when it is 940 pixels wide, here’s some code that should work:
#profile-banner {
margin-left: 5px;
width: 940px;
}
If you’ve always been bothered because your photo isn’t quite tall enough – or is too tall, you can now set the height of the profile banner.
How to Pimp Your Profile on the Beta Site
posted 6 months ago, updated 4 days later
Comments
Log in or sign up to reply.
- 1. 6 months ago BluesPlayer wrote:
-
Banner section is cut off. Did you exceed the blog text limit?
- 2. 6 months ago tallbob wrote:
-
Fixed, now. And a key piece of code was automatically chopped out by our "safety" code. Ironically, long ago, this "safety" code was used for all the editable sections of the profile and, if some programmer hadn't made the mistake of removing it, nobody would ever have been able to post a style tag and pimp their profile!
- 3. 6 months ago rich64nv wrote:
-
Good stuff Bob. My Beta profile is almost back to the same as the original. How do I make the section with my profile picture transparent?
Rich
- 4. 6 months ago mbotos wrote:
-
If you look closely at the green circle w/arrow graphic for search [upper right of page], you will see a little bit of black to the left and right of the circle. There is actually an H3 level header hidden under the search box and the arrow. The full text is 'Search Eons'. I'm guessing you meant to have this a little higher up. I checked in both Firefox and IE7 and it appears the same in both.
Michael...
- 5. 6 months ago grifin46 wrote:
-
I'll tell you what, let me rebuild your engine and you can mess with my enos. Reading all these instructions actually makes my head hurt so my eons will be plain. Thanks for the effort, I'm sure there are computer savey folks who can do just what you said kiddo.
- 6. 6 months ago grifin46 wrote:
-
I'll tell you what, let me rebuild your engine and you can mess with my eons. Reading all these instructions actually makes my head hurt so my eons will be plain. Thanks for the effort, I'm sure there are computer savey folks who can do just what you said kiddo.
- 7. 6 months ago Muchan wrote:
-
.ul.comment-block li.horiz-card{background:transparent;}
to illuminate background of comments box doesn't work: it's still there!
- 8. 6 months ago pepbold wrote:
-
I'm a complete dunce bunny here you give us the codes but you don't say where to put them on the profile to get them to take affect.I need the help.
- 9. 6 months ago tallbob wrote:
-
Rich, I will update the blog entry to include the code for making the profile "member card" transparent.
Muchan, there's an extra period before the ul in your comment. ul is an element type and not a class and so does not need a period.
pepbold, If you are a dunce bunny, how did you manage to pimp your profile in the first place? Did someone else do it for you? Can you get that person to update it for you? The alternative is to wait until we introduce our new "dunce bunny pimpin'" feature -- a feature that will not require knowledge of css or specific knowledge of undocumented Eons profile hacks. Coming Soon.
- 10. 6 months ago rich64nv wrote:
-
The code to make the profile member card transparent worked great Bob. Thank you very much!!!
Rich
Rich, I will update the blog entry to include the code for making the profile "member card" transparent.
- 11. 6 months ago Daydreamin wrote:
-
I am looking good, now!
I got my container transparent.
I got my member card transparent.
How about the little box inside right in member card, that has:
"Send a private message
.Add to favorites
.Send a gift"
...can we get a code for that, please?
Can we get code for the section headers, too. They are still a lovely lavender with purple letters.
AND, just curious, why do I not see an "edit history" or "edit Activities & Interests" in my personal view of my beta profile? I have had to go into old version to add codes. Is that just a temporary thing for everyone, or am I "special"... meaning GLITCHED!?
THANKS TB.
- 12. 6 months ago Daydreamin wrote:
-
I figured out some of it, by looking at your code, tb.
Just have purple underlines/dividers under section headings, now.
- 13. 6 months ago Rainbow16 wrote:
-
The instructions in HTML for adding background color was very easy to follow and understand. However, your blog seems to be addressed to those who are technically savvy with the computer. Where do we put the color codes? In old eons, we added it to history. where do we add it in beta?? where are the different codes for different colors? Some of us need simple, elementary, 1-2-3 steps. Please don't forget about that percentage of us Tallbob. Thanks for the blog.
- 14. 6 months ago oakielady wrote:
-
This sounds so confusing for a lady that isn't computer smart. How much different is it fromthe old version of background codes? Please have patients with this old lady.
Cathy
- 15. 6 months ago Andyce wrote:
-
I like the beta page, but how do I make my graphics on the left side of my profile smaller. The graphics on the right side of my profile are the right size. The graphics I added to center of my profile at the bottom are overlapping each other. Take a look at my beta profile, you will see what I mean. Thanks.
- 16. 6 months ago tallbob wrote:
-
Daydreamin - you should see an "Edit" link in the top right corner of the header for any section that you can edit.
Andyce, your profile is visible by friends only, so I cannot see your problem. I suspect it is now fixed as of Thursday morning's release. Try a control-refresh of your page to force the browser to reload the css files.
- 17. 6 months ago RochelleRochelle wrote:
-
Please let me know - via the comments, below - how this document is working for you
this is all really technical for most members, too labor-intensive for others. in the technical writing field, we create 'living' documents such as this one to address ongoing highly technical issues. which sort of takes the FUN out of eons. i haven't been to your beta site yet but i will most likely go all white (if i choose to use that site), like John and Yoko did on their white album. jolly good...
- 18. 6 months ago caylinn wrote:
-
I used your info to start playing around with my profile page again - easy to follow and thank you. I haven't completed the actual color scheme - just threw something in to see the results. I do have this "thing" about color coordinating. LOL
So there are two items I'd like to do something about if possible: iconlist (that yellow background/graphic just doesn't play well with my color choices) & the subnav ul (the li links have a purple background *shudder*) just above the banner.
Any help on that?
- 19. 6 months ago tallbob wrote:
-
caylinn, the code that sets the colors for the "active" and "hover" states of the sub-nav is:
#subnav li.active strong, #subnav li a:hover {
background-color:#8658A3;
color:white;
}
In your css codes, repeat the above with your favorite color combination. I'm not quite ready for everyone to use this advice ...I might still tweak the way this is targeted before the beta css is finalized.
- 20. 6 months ago orchidlover wrote:
-
After we all get just where we want, you guys go and change things, I hope for the better, but not sure until we try it for some months. I know that I will be plain, cause I just can't quite figure out where you want us to put the codes.????? dah
- 21. 6 months ago tallbob wrote:
-
Thre might have been something wrong with the quote-marks in the style header for the block of styles that makes the "frame" invisible -- the quotes around 'text/css'. A couple of people said they copied and pasted and it didn't work. The last time this happened, I looked at the profile and the quotes were displaying as "fancy quotes" - the kind that Microsoft Word likes to automatically use to replace boring standard quotes. So I changed this and now, they should definitely be the right kind of quotes if they weren't before.
- 22. 6 months ago mermaid777 wrote:
-
Thanks SOOO much Bob, I was in despair about only having one column, two inches wide and a mile long, and thanks to your advice to get rid of a code in History, it now has returned to the way it was. How you worked all that out, I do not know as I am no techno-nerd, just muddle through with sheer determination to get things working. Keep up the good work, you and your group are greatly appreciated.
June
- 23. 6 months ago gardenlady110 wrote:
-
Thanks, Bob...I got my background back, and when I get more time, I can play around with the rest of it :) I can live with it :)
- 24. 6 months ago Muchan wrote:
-
Yellow box to the right of profile photo and member's data (contains links for visitors) is really going astray with most backgrounds and color choces. Is it possible to change color of inside and border? So far I had no luck to do that.
caylinn asked about that too (see reply #18)
- 25. 5 months ago Rudytooty wrote:
-
What a mess on both my profile page and the page of the group I run. I know nothing about html code and don't understand why we even have to bother with it. I don't even know where to put the code even if I knew which code to use. Things are stacked on top of each other and photos in messages are so huge that the ads are on top of them. The space is terrible. I don't know who to go to besides you, Tallbob. Suzy doesn't accept PMs and I couldn't get the help desk either.
Rudytooty
- 26. 3 months ago YouRememberThat wrote:
-
Can I use Myspace for links?