Replies

Apr 23, 2017 8 years ago
usagi
has some electric moves!
User Avatar
Josie

usagi`s free simple user profile code

updated width of comment box from 350px to 300px as subeta coding has changed recently to narrower boxes!!

a simple user profile where you can include any boxes in any columns in whatever order you like~ (however IF YOU INCLUDE YOUR PETS SECTION you need to make it 4 or less pets per row!)

to put your code in, you can use the profile page! to quote

Quote by bug

STEP ONE: instead of pasting in a blank section, you&;d paste the code in the form on this page: <a href="https://subeta.net/preferences.php?act=profile">https://subeta.net/preferences.php?act=profile</a>
and in most cases that&;s all you need to do for it to work!! cuz profiles have the Profile section by default so most people still have theirs.</p>
<p>STEP TWO (optional): If step one didn&;t work by itself, then there is only one more step to do: you have to add the Profile section to your profile. And to do that, it&;s exactly way you add the Blank Section, except instead of clicking &quot;Blank Section&quot; you click the one that says &quot;Profile&quot; :)

(alternatively, the old but not preferred method is: by creating a blank section and pasting the coding, a blank section box can be found on the edit profile page, clicking add content, and blank section from the list)

for those css savvy already, here's the code to edit:

the code

<style> /*coding help provided by user usagi*/ html{background-color:; cursor:default; background:url(url goes here);} html, body, table, tr, td, div, a, i{font-family:trebuchet ms; font-size:12px; color:; text-align:center; letter-spacing:0px;} a:link, a:active, a:visited{color:; letter-spacing:0px; font-family:tahoma; font-size:10px; text-transform:none;} a:hover{color:; text-decoration:none; cursor:default;} .textbox{color:; height:80px !important; width:300px !important; -moz-border-radius:10px; border:1px solid ; background-color:; font-family:tahoma; font-size:10px;} .forminput{background-color:transparent; width:300px !important; height:20px !important; font-size:10px; -moz-border-radius:10px; border-radius:10px; border:0px solid ; font-family:trebuchet ms; letter-spacing:1px; color:;} table, td{background-color:;border:0px solid white;} .header{background-color:;border:1px solid ;padding:0px!important;} td{width:65px!important;padding-left:2px;} {background:;border:1px solid ;} </style>

Not sure what you're editing or doing? It's okay, I will walk you through it. Just take the above, copy and paste it into your notepad program and read my notes on the coding below (don't copy the one below because it will be a veritable mess)! Also, be sure and check out the resources below to help you choose colors and/or backgrounds if don't have anything in mind already! For usefulness, I will CAPS LOCK my notes below the relevant coding. (and yes, there is a lot because I don't know how much you know already so please be patient, thank you; if I don't comment on something, it's because it was mentioned earlier in the notes)

coding notes

<style> /*coding help provided by user usagi*/ THIS IS JUST A SMALL CREDITS THING TO ME. html{background-color:; cursor:default; background:url(url goes here);} THIS IS FOR YOUR BACKGROUND AND CURSOR. IF YOU DO CHOOSE A BACKGROUND, ADD THE FULL URL IN PARENTHESES. IT IS STILL USEFUL TO CHOOSE A BACKGROUND COLOR BECAUSE YOUR GUEST WILL SEE THE BACKGROUND COLOR BEFORE YOUR BACKGROUND LOADS. COLORS ARE PROVIDED IN SIX DIGIT HEX CODES AFTER A HASHTAG #. USE THE COLOR WHEEL RESOURCE PROVIDED IN THE LINKS BELOW TO CHOOSE AS HARDLY ANYONE MEMORIZES HEX CODES! SIMPLER COLORS LIKE WHITE AND BLACK CAN BE WRITTEN OUT. CURSOR CAN BE DEFAULT, CROSSHAIR, HELP, AND THERE ARE MORE OPTIONS BUT THOSE ARE THE MOST COMMON. html, body, table, tr, td, div, a, i{font-family:trebuchet ms; font-size:12px; color:; text-align:center; letter-spacing:0px;} THIS TELLS US WHAT OUR TEXT SHOULD LOOK LIKE AND HOW IT SHOULD BE CENTERED. YOU CAN CHOOSE CENTER, LEFT, RIGHT, OR JUSTIFY FOR TEXT-ALIGN. POPULAR FONT FAMILIES INCLUDE: TREBUCHET MS, TAHOMA, VERDANA, GEORGIA, CENTURY GOTHIC. IF YOU INCLUDE A FANCIER TYPE (YOU INSTALLED FOR EXAMPLE), REMEMBER OTHERS MAY NOT SEE IT ON THEIR DEVICES. SIZES ARE ALWAYS FOLLOWED BY A PX. LETTER-SPACING IS HOW MUCH SPACING SHOULD BE BETWEEN INDIVIDUAL CHARACTERS/LETTERS. YOU CAN DO NEGATIVE SPACING BY PUTTING IN a - IN FRONT OF THE NUMBER, IE -1. ALSO FOLLOWED BY A PX. a:link, a:active, a:visited{color:; letter-spacing:0px; font-family:tahoma; font-size:10px; text-transform:none;} THIS TELLS US WHAT OUR LINKS SHOULD LOOK LIKE. I ADDED IN A TEXT-TRANSFORM BIT WHICH MEANS YOU CAN DO THINGS LIKE MAKE ALL LINKS: LOWERCASE, UPPERCASE, CAPITALIZE, OR NONE (WHICH MEANS DOESN'T CHANGE ANYTHING). a:hover{color:; text-decoration:none; cursor:default;} THIS TELLS US WHAT OUR LINKS SHOULD LOOK LIKE WHEN WE HOVER OVER THEM WITH OUR CURSOR. YOU WILL NOTICE A NEW THING HERE: TEXT-DECORATION. IT TELLS US WE CAN ADD: UNDERLINE, OVERLINE, LINE-THROUGH TO THE TEXT. .textbox{color:; height:80px !important; width:300px !important; -moz-border-radius:10px; border:1px solid ; background-color:; font-family:tahoma; font-size:10px;} THIS IS FOR THE COMMENT BOX. COLOR IS THE TEXT COLOR. HEIGHT AND WIDTH ARE NUMBERS FOLLOWED BY PX (PIXELS). THAT MOZ-BORDER THING MEANS ROUNDED CORNERS ON MOZILLA BROWSER. BORDER OF THE COMMENT BOX CAN BE PERSONALIZED. THE PX BIT TELLS US HOW THICK THE BORDER IS. HIGHER NUMBER = THICKER BORDER. SOLID IS THE TYPE OF BORDER. OTHER KINDS YOU CAN SELECT ARE: DASHED, DOTTED, DOUBLE, GROOVE, RIDGE. THE LAST BIT IN BORDER IS OBVIOUSLY THE HEX CODE FOR ITS COLOR. .forminput{background-color:transparent; width:300px !important; height:20px !important; font-size:10px; -moz-border-radius:10px; border-radius:10px; border:0px solid ; font-family:trebuchet ms; letter-spacing:1px; color:;} THIS IS FOR THE TEXT UNDERNEATH THE COMMENT BOX. PERSONALLY FOR THIS I WOULD LEAVE THE BACKGROUND TRANSPARENT AND BORDER ZERO AND HENCE NON-EXISTENT BECAUSE YOU DON'T WANT A BOX UNDERNEATH A COMMENT BOX AS IT LOOKS UGLIER IMO. THE MOST IMPORTANT BITS HERE ARE HOW THE TEXT SHOULD LOOK LIKE. table, td{background-color:;border:0px solid white;} THIS IS FOR THE INDIVIDUAL BOXES YOU DECIDE ON. .header{background-color:;border:1px solid ;padding:0px!important;} THIS IS FOR THE HEADERS ON THOSE INDIVIDUAL BOXES. SUBETA DOES A NICE GRADIENT THING FOR HEADERS AUTOMATICALLY SO WHATEVER BACKGROUND COLOR YOU CHOOSE FOR THE HEADER HERE WILL LOOK LIGHTER DUE TO THE GRADIENT EFFECT. NICE! THE PADDING BIT IS THERE TO MAKE THE HEADER APPEAR MORE CENTERED TO THE REST OF THE BOX. LEAVE IT AS IS! td{width:65px!important;padding-left:2px;} THIS IS FOR THE PET BOX TO MAKE THE PETS' HEADERS LOOK LESS WONKY AND MORE CENTERED. IF YOU CHOOSE TO INCLUDE YOUR PETS SECTION YOU NEED TO MAKE IT AT 4 HEADSHOTS PER ROW OR FEWER SO THAT THEY DON'T GO PAST THE BOX WIDTH AND INTO YOUR BACKDROP! {background:;border:1px solid ;} LASTLY THIS IS FOR SUBETA NAVIGATION LINKS AT THE VERY TOP OF YOUR PROFILE! CUSTOMIZE THE BACKGROUND AND BORDER HERE! CONVERSELY, IF THAT NAVIGATION THING BOTHERS YOU WITH ITS EXISTENCE YOU CAN CHOOSE TO NOT DISPLAY IT BY WRITING {display:none;} INSTEAD OF THE STUFF PROVIDED ABOVE. </style>

THIS TAG CLOSES YOUR CODING AND AFTER YOU CAN TYPE IN WHATEVER YOU LIKE AND IT WILL APPEAR IN YOUR BLANK SECTION. GOOD PLACE TO CREDIT STUFF IF YOU USE A BACKGROUND! IN WHICH CASE YOU CAN DO SO BY:

background credit

Useful resources!! (from colourlovers): hex code color wheel browse background patterns (if you find a background you like, click on preview under "get this pattern image" on the right hand sidebar and you will be taken to the page with the background - copy its url into the url bit; and be sure to give credit where credit is due!)

Any questions, please ping me and I will try to answer asap! c:

Hope this helps! :* And I would appreciate if you use this in any way, to post here to keep this thread alive! Thanks!

(@ far bc I promised :))

[sup]"We are like the dreamer who dreams and then lives inside the dream."[/sup] [sup]art by [/sup] [sup]cute gallery[/sup]

Apr 23, 2017 8 years ago
far
is a gold digger
User Avatar
Fartsie

YES THANK YOU

[font=arial]But you don't belong to the shadows[/font]

Apr 23, 2017 8 years ago
Wasserpest
wishes you were beer
User Avatar
Sobek

This is very nice of you. But what is a blank section box?

Apr 23, 2017 8 years ago
usagi
has some electric moves!
User Avatar
Josie

if you go to edit your profile page, and click add content, it's the blank section option from the list that appears C:

[sup]"We are like the dreamer who dreams and then lives inside the dream."[/sup] [sup]art by [/sup] [sup]cute gallery[/sup]

Apr 23, 2017 8 years ago
Wasserpest
wishes you were beer
User Avatar
Sobek

Yay, it worked! Thank you very much!

Apr 23, 2017 8 years ago
usagi
has some electric moves!
User Avatar
Josie

you're welcome! :) you can also remove the heading of the blank section to hide its title C:

[sup]"We are like the dreamer who dreams and then lives inside the dream."[/sup] [sup]art by [/sup] [sup]cute gallery[/sup]

May 2, 2017 8 years ago
Lamb
is bright-eyed and bushy-tailed
User Avatar

just started using it, thanks very much for this!

May 2, 2017 8 years ago
usagi
has some electric moves!
User Avatar
Josie

you are very welcome n__n if you need additional help customizing, just let me know :) !

[sup]"We are like the dreamer who dreams and then lives inside the dream."[/sup] [sup]art by [/sup] [sup]cute gallery[/sup]

May 6, 2017 8 years ago
abra
is synthetic
User Avatar

omg this is perfect ;-; super nice and simple and easy to edit, especially with your guide, thank you so much!


[tot=abra]
wishlist - shop - trades

May 7, 2017 8 years ago
usagi
has some electric moves!
User Avatar
Josie

you're welcome, glad you like it C: super cute spring av btw!

[sup]"We are like the dreamer who dreams and then lives inside the dream."[/sup] [sup]art by [/sup] [sup]cute gallery[/sup]

May 7, 2017 8 years ago
Cora
is sweet as pie
User Avatar
Shara

I love it, so simple yet so effective! C: Thanks so much for making this!

Do you know if there is anyway I could customize the code so that my pet's names are under the headshot and not next to it? I'd like my 3 pets to fit into the same row c:

[flower=Cora]

Extra Lifelike Dolls

May 7, 2017 8 years ago
usagi
has some electric moves!
User Avatar
Josie

sadly I don't BUT it should look better by editing that box and choosing 3 pets per row instead of 2 ;O; and ty! C:

[sup]"We are like the dreamer who dreams and then lives inside the dream."[/sup] [sup]art by [/sup] [sup]cute gallery[/sup]

May 7, 2017 8 years ago
Cora
is sweet as pie
User Avatar
Shara

I'm so stupid, I totally forgot we could change that in the pets section xD It does look better indeed! Thanks for the quick reply c:

[flower=Cora]

Extra Lifelike Dolls

May 7, 2017 8 years ago
usagi
has some electric moves!
User Avatar
Josie

no problem! :3 lovely background chosen btw!

[sup]"We are like the dreamer who dreams and then lives inside the dream."[/sup] [sup]art by [/sup] [sup]cute gallery[/sup]

May 10, 2017 8 years ago
Kismet
is made of stardust
User Avatar
Bangtan

Thank you so much for this!! Just one question. I can't seem to figure out how to make it not make my comments box go out of the section it's in. Help me? lol

[edit] Nvm, I figured it out!

May 14, 2017 8 years ago
usagi
has some electric moves!
User Avatar
Josie

wow, I'm sorry I missed this ping ;__; I am glad you were able to figure it out though C: it all looks good on your profile atm!

[sup]"We are like the dreamer who dreams and then lives inside the dream."[/sup] [sup]art by [/sup] [sup]cute gallery[/sup]

May 24, 2017 8 years ago
Yer a wizard
Hound
User Avatar

Gonna try it out tomorrow - pinging myself not to forget this page lol

May 26, 2017 8 years ago
Wander
is a lush
User Avatar

Thank you! <3

May 28, 2017 8 years ago
usagi
has some electric moves!
User Avatar
Josie

ooh, great color choices and omg your pets are adorable O /hugs dog

your space theme is the best theme ❤️ :D

[sup]"We are like the dreamer who dreams and then lives inside the dream."[/sup] [sup]art by [/sup] [sup]cute gallery[/sup]

May 28, 2017 8 years ago
Yer a wizard
Hound
User Avatar

Thank you for doing this! Doggy lick

Please log in to reply to this topic.