doc4
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: WP Super Edit] Existing Custom CSS Classes?Thanks for the tip randyhoyt. This works perfectly with WordPress 2.8.4
Forum: Plugins
In reply to: Twitter; show latest post only, with no text formatting!trstd,
Hopefully you have solved this by now. Just in case you still need assistance have a look at this article http://www.johnkolbert.com/wordpress/show-your-latest-tweet-in-5-lines-of-code/. Place the function within your functions.php file surrounded by <?php tags and use the call to show your tweets.
Forum: Fixing WordPress
In reply to: making wordpress sweet on all browsersdobro,
Are you currently working on the site? I’m not seeing the “Home” link at this time.
Forum: Fixing WordPress
In reply to: Custom Default Avatarnickaster,
I can’t recall where I picked this code up and if the author sees this I apologize.
Add the following to your active theme’s functions.php file then upload an image named “avatar.jpg” to your active theme’s image folder. The image can be named anything you would like but be sure to change it in the code below as well.
The last step is to visit: Settings > Discussion to select the new avatar as the default.
// Add a default avatar to Settings > Discussion if ( !function_exists('fb_addgravatar') ) { function fb_addgravatar( $avatar_defaults ) { $myavatar = get_bloginfo('template_directory') . '/images/avatar.jpg'; $avatar_defaults[$myavatar] = 'Doc4'; return $avatar_defaults; } add_filter( 'avatar_defaults', 'fb_addgravatar' ); } ?>Forum: Fixing WordPress
In reply to: making wordpress sweet on all browsersdobro,
This could very well be attributed to many coding factors, without the site address there is no way for us to help.
Forum: Fixing WordPress
In reply to: A way to turn posts into comments?onethousandseas,
Why would you want to do this?
Forum: Fixing WordPress
In reply to: trouble getting banner to top leftTheFlyerFly,
You’re saying there was no margin defined within the #page style? Okay I see the issue: #page is now defined twice in your stylesheet. Delete the first instance and scroll down the page until you find the #page instance shown in the comment above.
Forum: Fixing WordPress
In reply to: API key…. hmm dont even know what to say!lindsayanng,
I believe they are doing some work on the site as is evident by the WordPress Profile page. I can’t be certain of this though. You may get better answers from the WordPress.com forums.
Forum: Fixing WordPress
In reply to: How do I get WP to stop molesting my HTML?sorry_i_ever_started_using_wp,
That’s quite a user name, but back on topic can you describe these “epileptic seizures” a little more. I know that during the save state if you haven’t flipped over to the Visual you can lose some information. I’m confident this will be corrected soon. I have also never seen the “‘” that you are referring to.
Can you include a screenshot of this? One thing you might try is deactivating all plugins to find out if this truly a WordPress issue or a plugin issue.
Forum: Fixing WordPress
In reply to: Linked images in sidebar not clickable1721media,
No problem, let us know if you need any further assistance.
Forum: Fixing WordPress
In reply to: iNove 1.4.6 – blog name in the middle of the header?ThorstenD,
Alter the following styles #caption and #tagline to:
#caption { padding: 25px 0 0; text-align: center; } #tagline { border-top: 1px solid #FFF; color: #FFF; font-size: 10px; margin: 0 auto; padding: 0 3px; text-decoration: none; width: 200px; }Forum: Fixing WordPress
In reply to: Linked images in sidebar not clickable1721media,
Errors aside, it appears you need a width on the #content. It is spilling over into the sidebar and covering it.
This is not a correct width but add this into the stylesheet as a test.
#content { width: 200px; }Forum: Fixing WordPress
In reply to: Permalinks to /%tag%/Êtegory%/%postname%moisty70,
esmi is correct. Please refer to the codex on permalink usage: http://codex.wordpress.org/Using_Permalinks
Forum: Fixing WordPress
In reply to: link a thumbnail to the postistrep,
<a href="<?php the_permalink() ?>"></a>Is this what you are looking for?
Forum: Fixing WordPress
In reply to: Images from my gallery are oversized and overlappingsociallys,
Please include a link so we can take a look.