doc4
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Where is my blog?rhythmofthecosmos,
How is this site set up? Is the entire site built in WordPress or just the Blog? If the entire thing is built in WordPress what folder is the Blog located in?
Forum: Fixing WordPress
In reply to: WP asks for FTP user/pass when upgrading a pluginwattt,
I’ve always looked at this as a security feature but It is best to upgrade a plugin through FTP regardless.
Forum: Fixing WordPress
In reply to: Sidebar floats beyond footerechodust,
Error loading the page
Forum: Fixing WordPress
In reply to: Shoe custom field data from parent pagein child pageclevercleaver,
<img src="<?php bloginfo('url'); ?>/wp-content/uploads/<?php echo get_post_meta($post->ID, 'headerimage', $single=true) ?>">Try the above code then in the custom field only enter the file name without the extra path to the file. This will save a little time. Here is an example of what to type in the custom field: “myImage.jpg” (without the quotes)
Forum: Fixing WordPress
In reply to: Getting frustratedashleykaryl,
Excerpts: Not certain how this is being coded, but using the_content() won’t work in this situation. You will need to adjust the php code to show the_excerpt() instead: http://codex.wordpress.org/Template_Tags/the_excerpt
<?php the_excerpt(); ?>The alternative is to use the Limit Post Plugin which will work without the need to use the excerpt textfield area in the admin allowing you to concentrate on the content only. Install the plugin and set it to show only the amount of copy needed from the content. Here is a download link with example: http://www.doc4design.com/plugins/limit-post/
Banners: If you can post a link to your site and let us know which plugin you are using for this it would e easier to help with this. If you are need a coder please feel free to contact us for a quick estimate. We would be happy to help.
Forum: Themes and Templates
In reply to: Post content problemkiller999pt,
Not sure what this means.
Forum: Themes and Templates
In reply to: Naked HeaderBignasty247,
Now I see it. I tried to respond to another post of yours on the same subject. Start by deleting the “pager” div:
<div id="pager"> <div id="headr"> <div class="description"> hopes Brandon Marshall enjoys his impromptu vacation. </div> </div> </div>Then add a negative margin to the “page” style on line 119 of your style.css:
#page { margin: -10px auto 0; text-align: left; width: 970px; }Forum: Themes and Templates
In reply to: Scrossing left/right issueharoonp,
Are you certain this isn’t a linking issue with vimeo? The issue only affects certain images in the list.
Forum: Themes and Templates
In reply to: Header, TaglineBignasty247,
Your site is not showing.
Forum: Fixing WordPress
In reply to: Hiding a blog post, but visible to people who have the urlsejanus,
Short of looking for a plugin you might consider excluding the post from any loops, leave it as published and then provide links to those who you do want to view it. I suppose it really depends on hosw private it needs to be.
Forum: Fixing WordPress
In reply to: How to change font size of sub-linksedtrost,
It seems you almost have it. Line 302 of your stylesheet add: font-size: 20px; (or whatever size you would like )
Example:
#menu a { background: url(img/navigation.png) no-repeat left -150px; color: #FFF; font-size: 20px; font-weight: bold; line-height: 40px; padding: 0 8px 0 10px; text-shadow: 0 1px 0 #555; }Forum: Fixing WordPress
In reply to: How to change the sidebar background color in ProsenseqPetraW,
Are you referring to the ProSense theme? If so the entire background is a single image which can be seen here from the demo site: http://thewrongadvices.com/ProSense/wp-content/themes/ProSense/images/page_background.jpg
Notice that the two sidebar colors are included in this file. Alter the image file and you will be able to change your colors. The CSS code is:
#page { background: #FFF url(images/page_background.jpg) repeat-y center top; margin: 0 auto; padding: 0 10px; width: 950px; }Forum: Your WordPress
In reply to: New Site: Looking for Suggestions and CriticismThank you for the feedback so far.
ideabutter, we are using sIFR to replace the headlines.
Forum: Fixing WordPress
In reply to: unable to find home page to make editscreditqueen,
Are you using a theme that we can take a look at or is this something custom?
Forum: Fixing WordPress
In reply to: How to display random post with some textcbogdan,
Add the_content() similar to what this function is doing with the post_title().