Forum Replies Created

Viewing 15 replies - 301 through 315 (of 380 total)
  • I’m not quite certain from the jpg image you posted what it is you want to achieve. Are you saying you always want images to be at the top right?

    From what I can see looking at your source code,

    I’m guessing that if you add this to the stylesheet and fool with the stylespecs, you’ll be able to achieve what it is you want:


    .post h2 {/*stylespecs*/} //headline of post
    .post small {/*stylespecs*/} // dateline
    .post .entry {/*stylespecs*/} // whatever is in the post
    .post .entry img {/*stylespecs*/} // image in post
    .post .postmetadata {/*stylespecs*/} // 'posted in' details at bottom of post

    Maybe try using a different theme that is closer to what your designer wants. Then the editting will be far less.

    http://wordpress.org/extend/themes/

    http://codex.wordpress.org/Using_Themes/Theme_List

    Are you sure that this includes >? There should not be a problem with the greaterthan symbol if it is the first thing placed. But there will be a problem with the lessthan symbol because it is integral to HTML coding itself.

    Because the comments can be set up to accept some HTML tags, your user probably has to close any instances of <

    What you could try is to make sure that “code” is allowed in the list of allowed tags in kses.php

    Look for:
    if (!CUSTOM_TAGS) {
    $allowedtags = array(

    Then scroll down to

    'br' => array(),

    If the following is NOT there, you can add it on the next line:
    'code' => array(),

    You can then make some sort of note to tell your commenters that if they wish to use the symbol <, they must surround it with the HTML tags of <code></code>

    (I HOPE this post made sense and that it came out correctly! It’s extremely difficult to post coding examples in this forum.)

    edit: Apparently you can also override kses.php by creating a ‘my-hacks.php’ I’m afraid that I threw caution to the winds and edited my kses.php directly….

    Yes, it looks fine in IE, Netdetective. But you might want to doublecheck it in Netscape, Firefox, Opera. The text is disappearing underneath your header image on all three of those browsers. (NS7.1, FX1.0.7, OP8.5)

    There are still many many coding errors that may well be causing the problems.

    HTML Validation Results for your page

    http://www.htmlhelp.org/tools/validator/

    Forum: Fixing WordPress
    In reply to: Help with Code?

    You’re very welcome. Glad it’s working, Bella!

    Forum: Fixing WordPress
    In reply to: Help with Code?

    Ah. Alas, the vagaries of IE… What exactly isn’t working in ie?

    (edit: I just looked at your blog in IE6 and as far as I can tell, the email link looks like it’s right)

    I think you are on the right track, Netdetective, to customize an existing theme that is as close as possible to what you want. That is what I did….

    I would definitely not use Frontpage. and I know nothing about Dreamweaver. But if the coding that is on your page now was produced by Dreamweaver, then I would advise against it as well. There are many many HTML errors on the page.

    I use a simple text editor (editpad) to encode pages. (I’m not an IT designer or professional web designer either.)

    Forum: Fixing WordPress
    In reply to: Help with Code?

    You’re most welcome, Bella. I’m glad it was useful. I see that you have now successfully added the blurb and link to the ‘about me’ page. Yay!

    edit:

    In the email link, you might want to replace your email address characters with character entities to help prevent robots from being quickly able to mine your address in order to send you spam:

    Instead of @ in your coding, type
    &,#064; (without the comma)
    ampersand numbersign zero six four semicolon

    You can also replace the letters in the link. For instance, instead of href="mailto:, you could type href="&,#109;ai&,#108;to: (without the commas after the ampersands – it is VERY difficult to display code in this forum)

    More on character entities:
    http://llizard.etherwork.net/cwc/charactmap.html#recommended

    Forum: Fixing WordPress
    In reply to: Help with Code?

    Look for:

    <li id="linkcat-2"><h2>Links</h2>
    <ul>
    <li><a href='http://mugglenet.com/' title='All things Harry Potter'>Muggle Net</a></li>
    <li><a href='http://www.theonion.com/content/index' title='News Source'>The Onion</a></li>
    <li><a href='http://www.blingo.com/friends?ref=mn9mry5Ai%2BUZ7nzBZucpGHFSUcU' title='Search and Win Prizes'>Blingo</a></li>
    <li><a href='http://www.illwillpress.com/' title='Foamy Rocks'>Ill Will Press</a></li>

    </ul>

    And just BEFORE add

    <li><a href='http://newlinkaddress/' title='brief description of link'>Link Name</a></li>

    Hope that helps.

    edit: posted before Bella had replied…. I’d have to look more closely at the coding to see where the link would be inserted to get it closer to the top of the page… maybe someone will get to it before I do. I have non-keyboard tasks I have to do now….

    You could try adding a width spec to the page id in themes/default/style.css

    #page {
    background: white;
    border: 1px solid #959596;
    text-align: left;
    width:784px;
    }

    and specify the image that is in the table at the top as the background (find this coding on the index page in themes/default/

    #headerimg { background: url('http://www.clean-credit.org/images/h_header.jpg') no-repeat top;}

    I don’t know for certain that that would work, but you could give it a shot.

    The following sites may also be of help:
    http://www.htmlhelp.com/reference/css/structure.html
    http://glish.com/css/
    http://www.htmldog.com/

    Incidentally, there are a number of coding errors on your page. If you plug the page URL into the window at
    http://www.htmlhelp.org/tools/validator/
    you can see a list of them. Fixing the errors may well help you a lot in figuring out how to get your site to look the way you expect it to look. (There are generally explanations about each error on the results page of the validator.)

    Hope that helps.

    I’ve pretty much given up trying to guess how or why IE behaves (or should I say, ‘misbehaves’?), melbell.

    As is written in “The Browser Wars”:

    Internet Explorer has become the bane of any forward-thinking web designer’s existance. With the onset of advanced CSS layout techniques, IE6’s rendering engine has been exposed as buggy and unreliable.

    whole article here:
    http://www.yourhtmlsource.com/starthere/browserreview.html

    I realize that I’m replying rather late to this thread, but these sites may offer better answers:

    http://www.positioniseverything.net/ie-primer.html
    http://www.jakpsatweb.cz/css/css-vertical-center-solution.html

    I realize that this is an old thread and the problem may have been resolved. However, this is the first (in the many that I have searched about customizing wp-db.php) that deals with specifics of HOW to go about doing so.

    I don’t know for certain that this is the answer to fixing the parse error is to change the quotation mark into a single quotemark after bail( and before the final );. You will also have to escape the apostrophe in I’m sorry by putting a backslash before the apostrophe.

    $this->bail('
    <div align="center">
    [...]
    I\'m sorry but the <b>site is temporally down due to technical
    [...]
    ');

    I’m with davgam on this issue: http://wordpress.org/support/topic/36534#post-257124

    It isn’t always a viable option to switch hosts. And it would be very nice if the error page could be easily made to match the look of the site that the wordpress blog is on rather than matching the look of wordpress.

    Forum: Fixing WordPress
    In reply to: My .htaccess file
    ejm

    (@llizard)

    Some servers (mine is one of them) do not even allow permissions of 666. I have wordpress .htaccess set to 644 and it works just fine.

    I can change the permission to 666 but if I do, it causes wordpress to fail entirely.

    I find it a bit disturbing that the wordpress codex suggest chmodding to 666 rather than 644.

    600 User can read, write; everyone else has zero permission
    644 Everyone can read; only User can read, write.
    664 Everyone can read; User and Group can read, write.
    666 Everyone in the world can read, write. (not really a good idea, I would think.)

    http://www.tldp.org/LDP/intro-linux/html/sect_03_04.html#AEN2862

    ejm

    (@llizard)

    Yes, macmanx, I have confirmed it by creating a whatisallowed.php page

    code:
    <?php phpinfo(); ?>

    and inserting into the wp folder. (I removed the file after looking at it.)

    This is what appeared in the “Configuration PHP Core” table:

    allow_url_fopen | Local Value: On | Master Value: On

    Because I can do redirects of files, I’m assuming that mod_rewrite is enabled, even though there was no mention of it in the phpinfo file.

    ejm

    (@llizard)

    macmanx, scroll up to see that allow_url_fopen() is enabled on my server. However, looking at phpinfo, i see no mention of mod_rewrite.

    I took a look at
    http://codex.wordpress.org/Using_Permalinks

    and see a hint about why trackbacks are not working. My server does not allow 666 permissions on folders. The closest I can use is 644. This is getting to be WAY too hard for what’s left of my mind. Perhaps I will just remove the recent trackbacks/pingbacks from view on my sidebar (I’m running wp1.5) – out of sight, out of mind.

Viewing 15 replies - 301 through 315 (of 380 total)