doc4
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Image Paddingihavereverb,
I’m not seeing the img tag with a class at all. Are you working on the site right now?
Forum: Fixing WordPress
In reply to: Title appears outside the title boxkriss_kringle,
Change the following on line 59 of your style.css:
header #header-info h1 { color: #8B1C92; font: bold 28px Verdana; padding-bottom: 5px; }to:
header #header-info h1 { color: #8B1C92; font: bold 23px Verdana; padding-bottom: 5px; }Forum: Fixing WordPress
In reply to: How do i make it so people who sign up for my site…italianbull38,
Have you checked the WordPress plugins database? http://wordpress.org/extend/plugins/
Forum: Fixing WordPress
In reply to: How to create a page that doesnt show up on menu bardekalearms,
Please display your navigation/menu code so we can take a look. My initial thought however is to use an exclude argument to remove the page id. See here: http://codex.wordpress.org/Function_Reference/wp_list_pages. This assumes you are using the wp_list_pages to display your navigation though.
Forum: Fixing WordPress
In reply to: Cannot get "category" out of permalinkAmber Fellows,
The best method we have found is to add the following code (between the
<?phpand?>tags. I’ve included the website this code snippet originated from in case you need to reference it later.// REMOVE CATEGORY BASE // http://www.bloggingtips.com/2009/02/01/remove-the-category-base/ //----------------------------------------- add_filter('user_trailingslashit', 'remcat_function'); function remcat_function($link) { return str_replace("/category/", "/", $link); }The final step is to simply ensure that the Permalinks Setting is
/%category%/%postname%/Forum: Fixing WordPress
In reply to: Code to get template namethadfiebich,
Can you elaborate a little more on what you are wanting to do?
Forum: Fixing WordPress
In reply to: Disable Subpages in Menubstunt,
Try this:
<?php wp_list_pages('sort_column=menu_order&title_li=&depth=1'); ?>More on the depth argument here: http://codex.wordpress.org/Function_Reference/wp_list_pages
Forum: Fixing WordPress
In reply to: Website instead of Blogvillagepubscene,
This may seem like a simple question with a straightforward answer but the reality is that it is not. If you want the the site to look less like a blog then you will need to either design and code it that way, hire a designer, or install a new theme.
Forum: Fixing WordPress
In reply to: Disable Subpages in Menubstunt,
Show us the code currently used to display the navigation.
Forum: Fixing WordPress
In reply to: How do I remove this blue line under the logo?sandyclifton2,
The blue line is part of the ‘header.png’image. Locate this image in the theme folder > images > header.png, open the file in an image editor and remove the line. A program such as Photoshop should do the trick do nicely.
Forum: Fixing WordPress
In reply to: excerptmrdanzhang,
I completely missed this post.
The code to replace is located within your theme files. The theme files are located here: Appearances > Editor. To the right hand side you will see a list of files that make your theme. Open up the files you would like to alter and look for the code:
<?php the_content(); ?>If you would like to shorten the length of this content entry then change it to something like:
<?php the_content_limit(200, "continue..."); ?>This will allow 200 characters to print and if longer will include ‘continue…’ at the end. Change either of these however you would like.
No need to alter the plugin code.
Forum: Fixing WordPress
In reply to: How to get rid of comments in Popular Posts?Hulbert Lee,
Sorry for the slow response. Let me know if you still need help with this. It looks as though you’ve solved it.
Forum: Themes and Templates
In reply to: How to get the “alt” and “title” information for an image?Pierreb,
Take a look at this post on this same topic. http://wordpress.org/extend/ideas/topic/require-alt-text-during-uploading-images
Forum: Themes and Templates
In reply to: How to get the “alt” and “title” information for an image?Pierreb,
This makes sense now and I’m wondering why the ‘alt’ isn’t working.
Just to clear this up for anyone else. The image ‘alt’ description is an option within WordPress and appears when uploading or editing an image.
Forum: Themes and Templates
In reply to: Error when uploadingBill Rose,
Transmit is an FTP (File Transfer program) used to upload/download files, images and folders from your website ( for example ). The uploads folder is the folder that stores uploads of images and other files which is a basic part of WordPress. The uploads folder is not on the Dashboard, images are typically uploaded to this folder through the Dashboard via the Media tab.
If you’re trying to upload a theme it should be done through Appearances > Add New Theme. Give that a try.