Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter udda

    (@udda)

    You are right elfin,
    seems like something in the plugin is not working correct. Hm now i need to find that…

    Thread Starter udda

    (@udda)

    Thank you esmi, yes i was suspecting it was something like that. I will try see if i can find out where to make changes.

    Seems like some work to turn of uncategorized postings? Shouldnt there be a good plug in that can handles what pages or categories a post shall be published at?

    Thread Starter udda

    (@udda)

    But i still wonder how to put a link manager in there as well 😀

    Thread Starter udda

    (@udda)

    This can make a real change on how to read the QuickPress posts while writing them in the admin systems Dashboard. I know by fact and 7 hours net searching later that there is too little documentation out there how to adjust this. For you who want to know:

    This only regards version 2.8.2 of WordPress since I havent tried all versions.

    Go to the wordpress folder wp-admin/css/ and open the file dashboard.css
    Find this code:

    form .textarea-wrap {
    border-style: solid;
    border-width: 1px;
    padding: 2px;
    border-color: #CCC;
    }

    #dashboard-widgets form .textarea-wrap textarea {
    border: 0 none;
    padding: 0;
    outline: none;
    width: 99%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    }

    Change the code to:

    form .textarea-wrap {
    border-style: solid;
    border-width: 1px;
    padding: 2px;
    border-color: #CCC;
    height: 250px;
    }

    #dashboard-widgets form .textarea-wrap textarea {
    border: 0 none;
    padding: 0;
    outline: none;
    width: 99%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 99%;
    }

    This will give you a Content box height on the Dashboard QuickPress to 250px and a scroll bar that follows up all the way down.

    Save and and upload to the destination folder on your server.

    Thread Starter udda

    (@udda)

    Found it at last in the dashboard.css just havent adjusted it yet to fit properly.

    }
    
    form .textarea-wrap {
    	border-style: solid;
    	border-width: 1px;
    	padding: 2px;
    	border-color: #f9d7dc;
    	<strong>height: 150px;</strong>
    }
    
    #dashboard-widgets form .textarea-wrap textarea {
    	border: 0 none;
    	padding: 0;
    	outline: none;
    	width: 99%;
    	-moz-box-sizing: border-box;
    	-webkit-box-sizing: border-box;
    	box-sizing: border-box;
    	<strong>height: 140px;</strong>
    }
    Thread Starter udda

    (@udda)

    I have succeded changing the frame size of file \wp-admin\css\dashboard.css on the line

    }
    #dashboard_quick_press .input-text-wrap,
    #dashboard_quick_press .textarea-wrap {
    	margin: 0 0 1em 5em;
    }

    To

    }
    #dashboard_quick_press .input-text-wrap,
    #dashboard_quick_press .textarea-wrap {
    	margin: 0 0 1em 5em;
    	height: 150px;
    }

    But it only seem to change the frames of Title, Content and Tags, not the spaces to write in… its still consistant to 1 line at Title and Tags and on Content its still 3 lines and the scroll is hanging up in the right corner.

    Still need asistance on this how to solve. Please!

Viewing 6 replies - 1 through 6 (of 6 total)