(i hope i pinged the right person) can you please move this for me to discussion?
what i basically want to have is a scrollable container including the pet's information, minion AND stats. like a column_4 it must be possible to do so, because that's how the normal columns are working. in user profiles one can simply drag and drop the contents, so is there a way to do something like that for pet profiles, too?
i really hope so =)
Unfortunately it doesn't work like that for pet profiles. There is a way around that might work but it's fiddly, requires some css knowledge annd it won't work for all pet profile 'types'.
normally my css knowledge is quite good and i don't have big problems with understanding new stuff. so if you'd like to, i'd really like to hear your idea
You can get the pet's description, minion, and stats altogether in a scrolling div like this, but it also includes the treasure and pet friends:
{overflow: auto; width: 700px; height: 500px;}
Is that what you're thinking of? An alternative is to display:none all the columns and code your own from scratch, which is allowed as long as none of the pet's information is falsified.
the problem is that i want the pet describtion to be outside. but you are right. i could just add a new div for the story and place it elsewhere! that could be the solution =)
because i'm way to lazy to write all the stuff on my own =D haha thank you! i'll try it out tomorrow!!
The problem is that all the pet profile elements (stats, pet description etc) are packed into one big div and there is nothing you can do to take them out so to speak. If you want to scroll some with only one scrollbar but not the others...you would be scrolling them all, as pet_info/content. There is no way to create a textbox outside that.
My solution would be to position the ones you want to scroll normally, make the whole content/pet_info scrollable and 'fix' the ones you want to ignore the scrollbar to the browser window using position:fixed; sort of fiddly and not applicable to everything you might have in mind though.