udda
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Got "> when posting images, need help! tag seems incorrectYou are right elfin,
seems like something in the plugin is not working correct. Hm now i need to find that…Forum: Fixing WordPress
In reply to: Adding post not to frontpageThank 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?
Forum: Plugins
In reply to: Changing size of Dashboard QuickPress Content BoxBut i still wonder how to put a link manager in there as well 😀
Forum: Plugins
In reply to: Changing size of Dashboard QuickPress Content BoxThis 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.
Forum: Plugins
In reply to: Changing size of Dashboard QuickPress Content BoxFound 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> }Forum: Plugins
In reply to: Changing size of Dashboard QuickPress Content BoxI 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!