New account registration is temporarily disabled.

RMN BUGS (V3)

Posts

author=GreatRedSpirit
Try setting it to a %. width: 90%; or so which would make the wrapper's width a function of it's parent element
That seemed to do the trick.
LouisCyphre
can't make a bad game if you don't finish any games
4523
Why are blog posts still ENTIRELY DISPLAYED on game profiles? At least max_height them or something in the CSS or something.
Are you able to max height them using custom CSS?
LouisCyphre
can't make a bad game if you don't finish any games
4523
I can, but right now they have the same tags on the main gameprofile that they do on their individual blog pages.

What would be nice is if their individual page had a different tag than when browsing the backlog or viewing the main profile.
Not without also affecting the blog posts in the Blogs tab. The blog contents have the same class AND hierarchy on the profile front page and in the blogs tab so I don't think you can do any CSS trickery that will only affect a profile front page and not the blogs page.
LouisCyphre
can't make a bad game if you don't finish any games
4523
That is exactly what I just said. :<
Yes but I didn't see your post when I was typing and checking the HTML hierarchy



*edit*
Ahahahaha, shit. Having a width assigned to an inline-block will cause it to act like a regular block in opera and have a line break. That colbert's supposed to be on the same line as the rest of my post and when I remove the image wrapper's width in Dragonfly it work again

sameline
sameline
Altima XTREME to the rescue! (does not affect blog tab)

#game_frame .left_column > :last-child {
max-height:600px;
overflow:auto;
}

(I was wrong about the hierarchy, oops!)
LouisCyphre
can't make a bad game if you don't finish any games
4523
That can go in the default CSS, couldn't it?

author=GreatRedSpirit
*edit*
Ahahahaha, shit. Having a width assigned to an inline-block will cause it to act like a regular block in opera and have a line break. That colbert's supposed to be on the same line as the rest of my post and when I remove the image wrapper's width in Dragonfly it work again

sameline
sameline


I suck at CSS in the morning. Kentona change the width:99%; to max-width:99%; . Otherwise the block will take up 99% of the line and therefore never displayed inline.

author=ChaosProductions
That can go in the default CSS, couldn't it?

Yeah, just wanted to show how it could be done without having to change the class of blog_posts based on their location.
I can do that.

What about the max-height stuff?
In the image_wrapper class for images where you gave it width:99%; , change the width to max-width so inline images work correctly.
I can do that.

But what about the max_height stuff for blogs? Is there anything I can do?
LouisCyphre
can't make a bad game if you don't finish any games
4523
GRS' bit of CSS accomplishes the same end and should be used instead.

E: as seen here
Oops, my bad, read that as max-width. The CSS code I included can be thrown in the site's CSS files (I'm not sure which, I can't see base.css or whatnot anymore just the wackynamed one that has all the site wide CSS in it) if you want to make every game profile use the 'fix' so blogs on a profile front page don't spill all over the place without affecting the blogs tab.
#game_frame .left_column .blog_post .message {
max-height:600px;
overflow:auto;
}

Use this instead, this won't put the blog title into the scroll bar so it is always visible. I think it looks better

*edit*
http://rpgmaker.net/games/2422/
Example of it at work
LouisCyphre
can't make a bad game if you don't finish any games
4523
that works too!
I did a search through all of the .css files and didn't find game_frame

as such, I don't know where to put it :(
LouisCyphre
can't make a bad game if you don't finish any games
4523
uhhh, try it at the very bottom?

I'll let you know if I see anything amiss.