Remove Ad, Sign Up
Register to Remove Ad
Register to Remove Ad
Remove Ad, Sign Up
Register to Remove Ad
Register to Remove Ad
Signup for Free!
-More Features-
-Far Less Ads-
About   Users   Help
Users & Guests Online
On Page: 1
Directory: 162
Entire Site: 5 & 1129
Page Staff: pokemon x, pennylessz, Barathemos, tgags123, alexanyways, supercool22, RavusRat,
04-24-24 11:55 PM
User Notice
Vizzed will be undergoing daily maintenance at 12 AM (CST)

Forum Links

Thread Information

Views
888
Replies
7
Rating
0
Status
CLOSED
Thread
Creator
Cyro Xero
01-29-11 02:26 AM
Last
Post
Cyro Xero
02-16-11 11:17 AM
Additional Thread Details
Views: 139
Today: 1
Users: 1 unique

Thread Actions

Thread Closed
New Thread
New Poll
Order
 

Profile design?

 

01-29-11 02:26 AM
Cyro Xero is Offline
| ID: 319227 | 52 Words

Cyro Xero
Level: 110


POSTS: 1568/3193
POST EXP: 241888
LVL EXP: 14392707
CP: 2389.3
VIZ: 714746

Likes: 0  Dislikes: 0
I've notice while looking through other members' profile pages that several of them have backgrounds and different colors/pictures in the header bars. I never really knew we could do this and now I want to. How would I go about doing that, if it differs from simply adding coding to my profile?
I've notice while looking through other members' profile pages that several of them have backgrounds and different colors/pictures in the header bars. I never really knew we could do this and now I want to. How would I go about doing that, if it differs from simply adding coding to my profile?
Vizzed Elite
Funder
Record holder: Posted from 3 different continents in 24 hours- Sep. 27, 2010


Affected by 'Laziness Syndrome'

Registered: 11-22-06
Location: Minnesnowta
Last Post: 2451 days
Last Active: 1047 days

(edited by Cyro Xero on 01-29-11 02:00 PM)    

01-29-11 02:30 AM
Annette is Offline
| ID: 319228 | 65 Words

Annette
Level: 100


POSTS: 708/2735
POST EXP: 168974
LVL EXP: 10273668
CP: 1012.1
VIZ: 723883

Likes: 0  Dislikes: 0
You have to make sure you don't have any line breaks in your CSS, otherwise the profile editor will transform it to a line break in the code and it will mess up your CSS.

So, for example, it would have to look like this:
body{background-image: ur(URL);} a:link {color: black;} a:hover {color: blue;}

As opposed to this:
body{background-image: ur(URL);}
a:link {color: black;}
a:hover {color: blue;}
You have to make sure you don't have any line breaks in your CSS, otherwise the profile editor will transform it to a line break in the code and it will mess up your CSS.

So, for example, it would have to look like this:
body{background-image: ur(URL);} a:link {color: black;} a:hover {color: blue;}

As opposed to this:
body{background-image: ur(URL);}
a:link {color: black;}
a:hover {color: blue;}
Vizzed Elite

Affected by 'Laziness Syndrome'

Registered: 03-10-10
Location: Hyrule
Last Post: 2917 days
Last Active: 2121 days

01-29-11 05:22 AM
is Offline
| ID: 319245 | 34 Words


JigSaw
Level: 164


POSTS: 5599/7936
POST EXP: 584185
LVL EXP: 57404339
CP: 8045.8
VIZ: -46031833

Likes: 0  Dislikes: 0
Easiest way to explain: In your browser window go to View > Page Source and there you have it

Or you can just hire someone to teach you or do it for you.
Easiest way to explain: In your browser window go to View > Page Source and there you have it

Or you can just hire someone to teach you or do it for you.
Vizzed Elite
PHP Developer, Security Consultant

Affected by 'Laziness Syndrome'

Registered: 04-06-06
Location: Area 51
Last Post: 1733 days
Last Active: 1728 days

(edited by JigSaw on 01-29-11 05:22 AM)    

01-29-11 02:02 PM
Cyro Xero is Offline
| ID: 319349 | 25 Words

Cyro Xero
Level: 110


POSTS: 1569/3193
POST EXP: 241888
LVL EXP: 14392707
CP: 2389.3
VIZ: 714746

Likes: 0  Dislikes: 0
So it involves CSS, which I know little to nothing about?

Just tried copying the code Annette posted with my own image URL. Didn't work.
So it involves CSS, which I know little to nothing about?

Just tried copying the code Annette posted with my own image URL. Didn't work.
Vizzed Elite
Funder
Record holder: Posted from 3 different continents in 24 hours- Sep. 27, 2010


Affected by 'Laziness Syndrome'

Registered: 11-22-06
Location: Minnesnowta
Last Post: 2451 days
Last Active: 1047 days

(edited by Cyro Xero on 01-29-11 02:17 PM)    

01-30-11 05:46 PM
BTowns is Offline
| ID: 319750 | 44 Words

BTowns
Level: 86


POSTS: 1170/1929
POST EXP: 135277
LVL EXP: 6087568
CP: 225.2
VIZ: 16520

Likes: 0  Dislikes: 0
I think you need to have the right CSS tags before and after it too... Or something. I don't really remember CSS from school, I copied and pasted all the CSS I did in grade 9 into my grade 10 and 11 websites, LOL
I think you need to have the right CSS tags before and after it too... Or something. I don't really remember CSS from school, I copied and pasted all the CSS I did in grade 9 into my grade 10 and 11 websites, LOL
Vizzed Elite
Computer Engineering Student at UBC


Affected by 'Laziness Syndrome'

Registered: 03-07-10
Location: West Coast Canada
Last Post: 4555 days
Last Active: 508 days

02-16-11 02:35 AM
Annette is Offline
| ID: 332997 | 71 Words

Annette
Level: 100


POSTS: 932/2735
POST EXP: 168974
LVL EXP: 10273668
CP: 1012.1
VIZ: 723883

Likes: 0  Dislikes: 0
It needs to have style tags around it for it to display properly. If you don't even know the basics I can't really delve in too much, sorry, don't have the time or energy to explain a coding language... You'll have to look up guides for it.

Also, you need to replace URL with the link to an image of some sort, otherwise the background will just be default or blank.
It needs to have style tags around it for it to display properly. If you don't even know the basics I can't really delve in too much, sorry, don't have the time or energy to explain a coding language... You'll have to look up guides for it.

Also, you need to replace URL with the link to an image of some sort, otherwise the background will just be default or blank.
Vizzed Elite

Affected by 'Laziness Syndrome'

Registered: 03-10-10
Location: Hyrule
Last Post: 2917 days
Last Active: 2121 days

(edited by Annette on 02-16-11 02:36 AM)    

02-16-11 10:12 AM
BNuge is Offline
| ID: 333170 | 187 Words

BNuge
Level: 137


POSTS: 1971/5714
POST EXP: 365399
LVL EXP: 30870463
CP: 14418.8
VIZ: 1504587

Likes: 0  Dislikes: 0
Cyro Xero :

There's two ways that I know of to do this.

1. Learn CSS. I don't know any CSS nor do I know how to get HTML to do multiple background images, so you can't ask me.

2. Cheat and put all of your images into one and reupload it as a single background. My layout has very little code to it. I used div tags to use style for the background image and background color and table tags for the text. Everything else (including the translucent box) are part of the one background picture.

I like Method 2 a lot better . After I finish a picture it only takes around 15-20 minutes to code. The only reason it takes so long is because I have to get the position of the text just right so it doesn't look ugly. I haven't tried putting in various links, but you could probably float them as images and use br to move it down.

My coding is all very basic, but still effective. I'm the top seller right now. Take that CSS coders .
Cyro Xero :

There's two ways that I know of to do this.

1. Learn CSS. I don't know any CSS nor do I know how to get HTML to do multiple background images, so you can't ask me.

2. Cheat and put all of your images into one and reupload it as a single background. My layout has very little code to it. I used div tags to use style for the background image and background color and table tags for the text. Everything else (including the translucent box) are part of the one background picture.

I like Method 2 a lot better . After I finish a picture it only takes around 15-20 minutes to code. The only reason it takes so long is because I have to get the position of the text just right so it doesn't look ugly. I haven't tried putting in various links, but you could probably float them as images and use br to move it down.

My coding is all very basic, but still effective. I'm the top seller right now. Take that CSS coders .
Vizzed Elite
Third Place in Feb 2011 VCS Achieved Ravering Syndrome + on Jan 6, 2012


Affected by 'Laziness Syndrome'

Registered: 04-30-10
Location: Northeast US
Last Post: 1218 days
Last Active: 444 days

02-16-11 11:17 AM
Cyro Xero is Offline
| ID: 333187 | 61 Words

Cyro Xero
Level: 110


POSTS: 1608/3193
POST EXP: 241888
LVL EXP: 14392707
CP: 2389.3
VIZ: 714746

Likes: 0  Dislikes: 0
Annette : How about this: any chance you can copy the coding you did and somehow give it to me? I can look at it, figure out how everything works and then come up with my own thing. I'd take the "page source", but that has HTML and PHP mixed together. And I don't know the different between CSS and PHP.
Annette : How about this: any chance you can copy the coding you did and somehow give it to me? I can look at it, figure out how everything works and then come up with my own thing. I'd take the "page source", but that has HTML and PHP mixed together. And I don't know the different between CSS and PHP.
Vizzed Elite
Funder
Record holder: Posted from 3 different continents in 24 hours- Sep. 27, 2010


Affected by 'Laziness Syndrome'

Registered: 11-22-06
Location: Minnesnowta
Last Post: 2451 days
Last Active: 1047 days

Links

Page Comments


This page has no comments

Adblocker detected!

Vizzed.com is very expensive to keep alive! The Ads pay for the servers.

Vizzed has 3 TB worth of games and 1 TB worth of music.  This site is free to use but the ads barely pay for the monthly server fees.  If too many more people use ad block, the site cannot survive.

We prioritize the community over the site profits.  This is why we avoid using annoying (but high paying) ads like most other sites which include popups, obnoxious sounds and animations, malware, and other forms of intrusiveness.  We'll do our part to never resort to these types of ads, please do your part by helping support this site by adding Vizzed.com to your ad blocking whitelist.

×