the Rift


Profile friendly code?

Adelis Posts: 33
Hidden Account
Mare :: Unicorn :: 14.3 hh :: Seven
Nevada
#1
Okay, so I've been working on this profile for only a while now, but I am already disliking how long it takes to scroll all the day to the bottom! Usually I like to make profile tables smaller and with a scroll box so you're not scrolling like a fiend just to get to the bottom on their page, so that spurred the question that I will ask you now!

Is the code that is used in the Guidelines page that snaps you to a certain area of the text profile friendly? If so, how in the world do you even do that, and would it be do-able on Addie's profile?
"I DISMEMBERED A MILLION FLOWER PETALS
AND YOU STILL DIDN'T LOVE ME."
- J.F.P.

Please tag me in all replies, ♥ 
Ascended Helovian

Mauja the Frozen Light Posts: 1,392
Outcast atk: 6.5 | def: 10.5 | dam: 7.5
Stallion :: Unicorn :: 17.2 :: 14 HP: 79.5 | Buff: HUNTER
Irma :: Snowy Owl :: Terrorize & Diego :: Eurasian Eagle-Owl :: Rage Neo
#2
HTML aaanchoooors!

Lemme see if I can remember how to do it.

The anchor:
Code:
<a id="appearance"></a>

The link to the anchor:
Code:
<a href="#appearance">Link to Anchor</a>

Pulled this out of my ass so not 100% sure it's the accurate syntax. xD
angels, they fell first, but I'm still here
Ascended Helovian

Mauja the Frozen Light Posts: 1,392
Outcast atk: 6.5 | def: 10.5 | dam: 7.5
Stallion :: Unicorn :: 17.2 :: 14 HP: 79.5 | Buff: HUNTER
Irma :: Snowy Owl :: Terrorize & Diego :: Eurasian Eagle-Owl :: Rage Neo
#3
Or wait maybe it's a name="appearance".. idk try both xD
angels, they fell first, but I'm still here

Adelis Posts: 33
Hidden Account
Mare :: Unicorn :: 14.3 hh :: Seven
Nevada
#4
Hahaha, okay, thankies Neo! <3
"I DISMEMBERED A MILLION FLOWER PETALS
AND YOU STILL DIDN'T LOVE ME."
- J.F.P.

Please tag me in all replies, ♥ 

Adelis Posts: 33
Hidden Account
Mare :: Unicorn :: 14.3 hh :: Seven
Nevada
#5
I have no idea what I just did, but it just showed a lot of ugly codes. Likely my fault, lmao.
I think I worded it wrong too, because the Guidelines aren't the same as I was thinking, it's actually the FAQ's that I was thinking of! It's all in the same thread, but it all has different codes, how is that? :o
"I DISMEMBERED A MILLION FLOWER PETALS
AND YOU STILL DIDN'T LOVE ME."
- J.F.P.

Please tag me in all replies, ♥ 
Ascended Helovian

Mauja the Frozen Light Posts: 1,392
Outcast atk: 6.5 | def: 10.5 | dam: 7.5
Stallion :: Unicorn :: 17.2 :: 14 HP: 79.5 | Buff: HUNTER
Irma :: Snowy Owl :: Terrorize & Diego :: Eurasian Eagle-Owl :: Rage Neo
#6
It's what I tried to show you. xP

For where you want the link to leap to:
Code:
<a name="whatever"></a>

The link that will take you there:
Code:
<a href="#whatever">Click me!</a>
angels, they fell first, but I'm still here
Ascended Helovian

Mauja the Frozen Light Posts: 1,392
Outcast atk: 6.5 | def: 10.5 | dam: 7.5
Stallion :: Unicorn :: 17.2 :: 14 HP: 79.5 | Buff: HUNTER
Irma :: Snowy Owl :: Terrorize & Diego :: Eurasian Eagle-Owl :: Rage Neo
#7
essentially just name the anchors whatever xD you can have as many as you like as long as they have different names ^^
angels, they fell first, but I'm still here

Adelis Posts: 33
Hidden Account
Mare :: Unicorn :: 14.3 hh :: Seven
Nevada
#8
Ohhhh, I see now, duh! Lmao. *Derps* Thank you Neo love! <3
"I DISMEMBERED A MILLION FLOWER PETALS
AND YOU STILL DIDN'T LOVE ME."
- J.F.P.

Please tag me in all replies, ♥ 

Rostislav Posts: 245
Hidden Account atk: 4.5 | def: 7.5 | dam: 7
Stallion :: Unicorn :: 15.1hh :: 7 (Frostfall) HP: 69.5 | Buff: ENDURE
Damaris :: Common Hellhound :: Acid Lauren
#9
Yeah, ID should be name... and it will link to lower down in the page.

Thread Tracker
Plot Thread

*You may do anything you wish with Rostislav excluding dismemberment and death.

Confutatis the World Eater Posts: 179
Hidden Account atk: 5 | def: 8.5 | dam: 5.5
Mare :: Equine :: 16.2hh :: 9 HP: 65 | Buff: NOVICE
Mongrel :: Common Kitsune :: Dark Illusions wanda
#10
@[Mauja] (Hope it's okay I tagged! D: )

Is it actually possible to re-create the same scrolling codes? (I.e. on companion page, it is collapsible and uses overflow)
Join the Regime.
Ascended Helovian

Mauja the Frozen Light Posts: 1,392
Outcast atk: 6.5 | def: 10.5 | dam: 7.5
Stallion :: Unicorn :: 17.2 :: 14 HP: 79.5 | Buff: HUNTER
Irma :: Snowy Owl :: Terrorize & Diego :: Eurasian Eagle-Owl :: Rage Neo
#11
Same wha how?
angels, they fell first, but I'm still here

Confutatis the World Eater Posts: 179
Hidden Account atk: 5 | def: 8.5 | dam: 5.5
Mare :: Equine :: 16.2hh :: 9 HP: 65 | Buff: NOVICE
Mongrel :: Common Kitsune :: Dark Illusions wanda
#12
Not recreate, necessarily (that a phone post ugh) but these codes: Account Creation, Filling out the Profile, Design and Appearance, etc, etc, where the you can collapse it and it does overflow. Is there a way to set this up on profiles?
Join the Regime.
Ascended Helovian

Mauja the Frozen Light Posts: 1,392
Outcast atk: 6.5 | def: 10.5 | dam: 7.5
Stallion :: Unicorn :: 17.2 :: 14 HP: 79.5 | Buff: HUNTER
Irma :: Snowy Owl :: Terrorize & Diego :: Eurasian Eagle-Owl :: Rage Neo
#13
Code:
<div class="panelcollapsed"><h2>I'm a header, yo</h2>
<div class="panelcontent" id="wanda">The stuff here.
</div></div>

<style type="text/css">
#wanda { height: 400px; overflow: auto; }
</style>

This utilizes the built-in panel collapse thing, and you just style it using #wanda for the content *shrug* for a different header, just make a .wanda-header class in the style sheet and tack class="wanda-header" on the h2.

Not an optimal solution but the easiest for you ;) If you'd rather I make you a fancy code *shrug* I can do that but.
angels, they fell first, but I'm still here


Forum Jump:


RPGfix Equi-venture