themandril
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: my header hotlink works in firefox but not ieActually, none of my links are working in IE! HELP…
Forum: Fixing WordPress
In reply to: Display differences in Firefox and IEOkay, did a little more research and made a visual comparison so you can see the problem, IE and Opera space things the same, Firefox and Netscape space them differently, here’s a link to a page where you can see it:
https://www.leftcoastlifestyle.com/comparison/comparison.html
It doesn’t seem like much, but can throw an entire WP layout out of whack, depending on the browser used. I want to believe there is some way to compensate for this one way or the other, but I have no idea what it would be…
Forum: Fixing WordPress
In reply to: Display differences in Firefox and IEThank you! Every little bit helps…
Forum: Fixing WordPress
In reply to: Permalink Problem after moving blogDid it, still no good. Okay, I’m using the custom permalink structure:
/%category%/%postname%/my WordPress address and blog address are both set to:
https://www.leftcoastlifestyle.comand when I click on one of my post permalinks it goes to (one example):
https://www.leftcoastlifestyle.com/books/i-hope-you-are-all-happy-now/Which looks right to me, but no matter what, it’s a 404 page.
I have customizable permalinks enabled, and it worked fine until I moved it to the root. Thanks for your help…
Forum: Fixing WordPress
In reply to: Cannot force line breaks in post!Oh, forgot this obvious change as well:
this.defParam(“remove_linebreaks”, false);
Forum: Fixing WordPress
In reply to: Cannot force line breaks in post!Fixed. In case anyone else has the same problem, here’s the deal:
The Tiny MCE editor WP has incorporated (which I love) is defaulted to remove/clean up line breaks and stuff. If you use shift-enter instead of enter you should be in luck. Depending on your configuration, you might also have to edit the initialization settings in the js/tinymce/tiny_mce.js file and change these values to reflect:
this.defParam(“force_br_newlines”, true);
this.defParam(“force_p_newlines”, false);
this.defParam(“convert_newlines_to_brs”, true);That’s what did it for me anyway…
Forum: Fixing WordPress
In reply to: Cannot force line breaks in post!Unfortunately, I have all of my hosting set up at Yahoo already. I must say, it is awesome, great uptime, everything is tidy and easy to manage. I did use their new MT installation and found that I HATE MT, but now that they are the new WP host with quick install and everything, I had some confidence. Other than this issue of not being able to put line breaks in my posts, it works perfectly, and fast!
Forum: Fixing WordPress
In reply to: Cannot force line breaks in post!This is a new install, right out of the box at Yahoo with their new Yahoo Business/Wordpress installation option.
When I am creating a post, if I enter blank lines, enter
tags, or if I enter , regardless, when I save the post WordPress strips out all blank lines and publishes it without them. It completely removes them. I have tried everything and it simply won’t allow blank lines in my post. It’s driving me crazy.Forum: Fixing WordPress
In reply to: My site won’t appear at all in IEI fixed the wonky things, but still no luck.
Forum: Fixing WordPress
In reply to: My site won’t appear at all in IEI fixed the wonky things, but still no luck.
Forum: Fixing WordPress
In reply to: My site won’t appear at all in IEDone, you can see them all here:
https://www.leftcoastlifestyle.com/checkit/Thanks a million for looking into it guys…
Forum: Fixing WordPress
In reply to: My site won’t appear at all in IEHmmm. Appreciate the help guys, not sure what I do about this problem. My index and all other template files have all the usual stuff filled out. They all use <?php get_header(); ?> and then my header file looks like this:
<?php /* Don’t remove this line. */ require(‘wp-blog-header.php’);???>
<!DOCTYPE html
PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN”
“https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd”>
<html xmlns=”https://www.w3.org/1999/xhtml” xml:lang=”en” lang=”en”><head>
<?php // Site title, and if extra use a dash. ?>
<title><?php bloginfo(‘name’); ?><?php wp_title(“-“); ?></title><?php // Meta information. ?>
<meta http-equiv=”Content-Type” content=”text/html; charset=<?php bloginfo(‘charset’); ?>” />
<meta name=”generator” content=”WordPress <?php bloginfo(‘version’); ?>” /> <!– leave this for stats –><?php // CSS Link ?>
<link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_url’); ?>” type=”text/css” /><?php // RSS, Pinging, and Atom ?>
<link rel=”alternate” type=”application/rss+xml” title=”RSS 2.0″ href=”<?php bloginfo(‘rss2_url’); ?>” />
<link rel=”alternate” type=”text/xml” title=”RSS .92″ href=”<?php bloginfo(‘rss_url’); ?>” />
<link rel=”alternate” type=”application/atom+xml” title=”Atom 0.3″ href=”<?php bloginfo(‘atom_url’); ?>” />
<link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” /><?php wp_get_archives(‘type=monthly&format=link’); ?>
<?php wp_head(); ?>
</head>
<body>
<div id=”header”>
<?php // This is the top box ?>
” title=”<?php bloginfo(‘description’); ?>”>
</div>
<div id=”text”>
<div id=”main”>
any help is greatly appreciated, I’ve never run into this before…Forum: Fixing WordPress
In reply to: My site won’t appear at all in IEI’m using FF to work on it, it seems to appear in FF okay for me – and I don’t have any javascripts, so I’m stumped.