jeezyo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How do I put photos in avatar images( that is on side of comments)?Forum: Everything else WordPress
In reply to: Getting Started with Social PluginsNot sure exactly what you mean, but if you need access to info related to a facebook business page, you can just have your client set you as an additional admin for that page on facebook.
Forum: Fixing WordPress
In reply to: How to move images in header and sidebarsYou need to find the area for custom css. then you need to set the width for .feat_box
right now, its 133px, which is the problem. So you need to either make it bigger, or do width: auto.
So, adding something like
.feat_box { width: auto; }
should work.Forum: Fixing WordPress
In reply to: I need a sidebar menuCreate a new menu in the menu editor. Then go into widgets, find the custom menu widget, drag it into the sidebar. Choose the menu you just created.
Forum: Fixing WordPress
In reply to: Edit menu-item names BEYOND cssIn the upper right hand, from the menu editor, choose screen options. Show classes. Then you can add classes to each link.
Forum: Fixing WordPress
In reply to: How do I maintain order in my html?Have you tried clicking on the HTML tab in the editor? Otherwise the structure will be determined by your themes template files.
Forum: Fixing WordPress
In reply to: I cant login to my sitego in with ftp, and delete this plugin /admin-menu-editor/ from wp-content/plugins.
Forum: Fixing WordPress
In reply to: Is it possible to have a image as a background for individual posts?to expand on that, you’d basically just need to wrap each post in a div, in the html tab of the editor.
Something like,
<div class="post1bg"> <p>Your post text</p> </div>
and then just define the class in your css.
Forum: Fixing WordPress
In reply to: All pages give a 404 after migrationWhat Christine meant, was to just hit save on your permalinks settings. It regenerates them and that often solves this problem.
Edit: I guess thats what you did, i read it too fast.
Forum: Fixing WordPress
In reply to: How to detect if current page is sub page of a certain page?Forum: Fixing WordPress
In reply to: How to Customise Site before changing nameserversYou need to use a temporary URL for the add-on domain. Youll need to set your wordpress install to use it. Itll probably be something like https://youripaddress/yourusername/subdirectoryfortheaddon
Hostgator can probably give you the exact URL.
Forum: Fixing WordPress
In reply to: All pages give a 404 after migrationTake a look at your permalinks settings.
Forum: Themes and Templates
In reply to: Div Background not displaying in IEAhhhh, thanks so much, i didnt even notice that and i never ran into that issue before. Perfect fix, very much appreciated!
Forum: Fixing WordPress
In reply to: Menu li explanationFrom Appearance–>Menus, click screen options in the upper right hand corner, and then click to check off “descriptions”. That will put a new field in each menu item where you can enter that text.
Forum: Plugins
In reply to: [MarketPress - WordPress eCommerce] Multiple Product Images in MarketPressSolution was to add this to the top of the functions.php:
function woothemes_mlu_js () { if( get_post_type() != 'product' ){ // Register custom scripts for the Media Library AJAX uploader. wp_register_script( 'woo-medialibrary-uploader', get_template_directory_uri() . '/functions/js/woo-medialibrary-uploader.js', array( 'jquery', 'thickbox' ) ); wp_enqueue_script( 'woo-medialibrary-uploader' ); wp_enqueue_script( 'media-upload' ); } } // End woothemes_mlu_js()
Thanks for your help and sending me in the right direction!