Perfect
Forum Replies Created
-
Forum: Hacks
In reply to: How do I give an options page its own menu?add_menu_page() instead of add_options_page()
Forum: Fixing WordPress
In reply to: how do I edit script?To modify the layout/look of your theme from dashboard you would go to “Appearance”, then “Editor”. Then you would select the name of the file you wanted to edit over on the right.
Forum: Hacks
In reply to: Custom plugins using the post's textbox.Nice, Big thanks!
Forum: Themes and Templates
In reply to: cut off!I’m not entirely sure what your asking, but try adding this to your css.
div#content
{
width:280px;
}or modify this to say 280px to 290px.
#content {
margin:0 0 0 10px;
width:400px;
overflow:hidden;
}Forum: Hacks
In reply to: How to Enlarge Login Form Size?/wp-admin/wp-login.php’s size is defined in /wp-admin/css/login.css
towards the bottom, ctrl+f search for #user_login#user_pass,#user_login,#user_email{font-size:24px;width:97%;padding:3px;margin-top:2px;margin-right:6px;margin-bottom:16px;border:1px solid #e5e5e5;background:#fbfbfb;}
change “font-size:24px” to “font-size:64px” or whatever your into.
Forum: Hacks
In reply to: Load plugin header in home only?I’m not sure what plugin you are using, but if you put code inside of if(is_home){}, it should only come up on the main page.
<?php
if ( is_home() AND !is_paged() )
{
your_plugin_function()//remove this and put your plugin line here.
}
?>