+ Reply to Thread
Results 1 to 5 of 5

Thread: New thread post screen     submit to reddit submit to twitter

  1. #1
    YOU ARE SEARED
    Dungeon Master of the House of Weave

    Join Date
    May 2007
    Posts
    4,453
    BG Level
    7
    WoW Realm
    Kilrogg

    New thread post screen

    This isn't an issue so much as it is feedback...

    The new thread box is fixed width and retardedly small. It stays that way not only for the posting editbox, but for the post preview, which makes formatting very difficult.

    Using Firefox 3, in case it matters.

  2. #2
    YOU ARE SEARED
    Dungeon Master of the House of Weave

    Join Date
    May 2007
    Posts
    4,453
    BG Level
    7
    WoW Realm
    Kilrogg

    This is still broken. It takes up less than half of the screen on a pretty average sized monitor.

    Here, have a picture


  3. #3
    Pay No Attention to the Man Behind the Curtain
    Join Date
    Dec 1969
    Posts
    3,568
    BG Level
    7
    FFXIV Character
    Ragns Meuhie
    FFXIV Server
    Gilgamesh
    FFXI Server
    Bahamut
    Blog Entries
    144

    Guess I could check next time I'm bored and want to go through tons of spaghetti css

  4. #4
    New Spam Forum
    Join Date
    May 2010
    Posts
    159
    BG Level
    3
    FFXI Server
    Lakshmi

    By the use of the Stylish plugin for firefox you can manually add the follow CSS changes to fix several issues on this forum.

    1. allow images to break the table without expanding all posts to fit the largest image
    2. allow code to not expand the table for the posts
    3. fix the issues brought up in this thread, which you can manually modify to fit your screen by changing the width numbers.

    blockhead, postpreview, wysiwyg_block, editor_textbox, blockbody.formcontrols, and forumrules.blockrow are all changes to fix the last issue which is where you can manually edit the width to fit your screen.

    this code will NOT be uploaded to the stylish database of css changes, and has only been tested with default forum theme.

    You will need to add this change by "write a new style" from the stylish menu on the lower right corner of your screen.

    If you dont like the change you can remove it by using managing your styles in the stylish menu.
    Code:
    @namespace url(http://www.w3.org/1999/xhtml);
    
    @-moz-document domain("bluegartr.com") {
    
    
    }
    
    .postcontent{
    width:780px !important;
    }
    
    .quotecontent{
    width:480px  !important;
    }
    
    .bbcode_container {
    width:780px  !important;
    }
    
    pre.bbcode_code {
    	width:680px  !important;
    }
    
    .postdetails {
    width:800px !important;
    }
    
    .blockhead {
    width:830px !important;
    }
    
    .postpreview {
    width:850px  !important;
    }
    
    .wysiwyg_block{
    width:852px !important;
    }
    .editor_textbox{
    width:730px  !important;
    }
    
    .blockbody.formcontrols{
    width:850px !important;
    }
    
    #forumrules.blockrow{
    width:830px !important;
    }

  5. #5
    alsohawks

    ALL YOU YOUNG HACKEY
    PLAYERS OUT THERE

    Join Date
    Jul 2009
    Posts
    5,960
    BG Level
    8

    Just stumbled upon this, thanks much for that stylish script.