amanda1973
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Text drift has returnedFor some reason, deconstructing the CSS blockquote elements worked. I took out the bottom padding and that cleared it right up.
Don’t know why it changed overnight, but oh well.
Rich H,
I too have been trying to figure out the Adhesive problem for months. Don’t know why I missed your solution before, but I’m glad I finally found it.
Anyone else on Dreamhost should follow your advice.
Forum: Themes and Templates
In reply to: CSS conflicts between IE/FirefoxThanks much.
Forum: Themes and Templates
In reply to: CSS conflicts between IE/FirefoxVkaryl, I added the inline style because I want the main content ULs to have bullets, but don’t want bullets on the sidebar.
I couldn’t manage to make that happen in my external CSS, but that’s because I’m stoopid.
Any advice on how to avoid the inline style?
Forum: Fixing WordPress
In reply to: Can I receive notification on new posts?Thanks, vkaryl. That’ll do it!
Forum: Fixing WordPress
In reply to: Need help making form work after upgradeCopying the text of content php into a new page has resulted in this.
Partway there, but still need some help…
Anyone?
Forum: Fixing WordPress
In reply to: Stupd question re: pagesThanks, podz!
I was hoping being able to access a php file would help me answer this question from yesterday. Any advice?
Forum: Themes and Templates
In reply to: Weird CSS problem in IEHow bizarre.
The blockquote border worked. Thanks, guys.
Forum: Themes and Templates
In reply to: Content falling to bottom of page — why?Turned out the “widecolumn” class was missing.
Thanks, jaseone.
Forum: Themes and Templates
In reply to: Content falling to bottom of page — why?Thanks for the response, jaseone.
When I reduce the width of the content, the problem remains.
Take a look.
Forum: Fixing WordPress
In reply to: Logging in to Dummy siteThanks, moshu. I’ll try setting up a second one.
I had problems with xampp. I’m sure they were MY mistakes, but I couldn’t get it to work.
Forum: Fixing WordPress
In reply to: Comments not working, goes to blank page.I’m actually getting the blank page after making an admin post, and after deleting posts.
Forum: Fixing WordPress
In reply to: Comments not working, goes to blank page.Same here. My problems started after upgrading to 1.5.2 a couple days ago.
Forum: Fixing WordPress
In reply to: Comment form missingThere’s a page-new.php in wp-admin. Is that the one you mean? The entire document consists of the code below:
<?php
require_once('admin.php');
$title = __('New Page');
$parent_file = 'post.php';
require_once('admin-header.php');get_currentuserinfo();
?><?php if ( isset($_GET['saved']) ) : ?>
<div class="updated"><p><strong><?php _e('Page saved.') ?> <a href="edit-pages.php"><?php _e('Manage pages'); ?> »</a></strong></p></div>
<?php endif; ?><?php
if ($user_level > 0) {
$action = 'post';
get_currentuserinfo();
//set defaults
$post_status = 'static';
$comment_status = get_settings('default_comment_status');
$ping_status = get_settings('default_ping_status');
$post_pingback = get_settings('default_pingback_flag');
$post_parent = 0;
$page_template = 'default';include('edit-page-form.php');
}
?><?php include('admin-footer.php'); ?>
Forum: Fixing WordPress
In reply to: Comment form missingIn the index.php file within the folder of the theme I’m using, the above line is already there. Does it need to be somewhere else?
<div class="post">
<h3 class="storytitle" id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h3>
<div class="meta"><?php _e("Filed under"); ?> <?php the_category(); ?> by <?php the_author(); ?> — <?php the_time('m/d/Y'); ?> @ <?php the_time(); ?> <?php edit_post_link(); ?></div>
<div class="storycontent">
<?php the_content(); ?>
</div>
<div class="feedback">
<?php wp_link_pages(); ?>
<?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?>
</div>
<!--
<?php trackback_rdf(); ?>
-->
<?php comments_template(); ?> <---------
</div>
<?php endforeach; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
</div>