Forum Replies Created

Viewing 15 replies - 556 through 570 (of 1,478 total)
  • Forum: Fixing WordPress
    In reply to: Hostican?
    ivovic

    (@ivovic)

    yeah, fair enough, who knows… maybe the hostican admins hang out here when their server is down.

    ivovic

    (@ivovic)

    Thanks Poe, yet another bastardisation of the venerable kubrick 😉

    It’s due for a redesign though – that’s been like that for getting on 4 years or so, which is too long for a personal blog…. Too bad I’m always working on something else.

    ivovic

    (@ivovic)

    maybe what you guys really want is a forum, not a blog.

    ivovic

    (@ivovic)

    it’s the ‘little server that could’

    “hostican, hostican”

    ivovic

    (@ivovic)

    Try the “design” tab instead… *sigh* 😛

    ivovic

    (@ivovic)

    this has absolutely nothing whatsoever to do with your wordpress version.

    if you remove the background image – all you’ll be left with is a transparent page div, showing the body background colour.

    have you actually looked at the images in your style? try opening them in your favourite image viewer, things should become clearer for you if you actually examine what you’re working with.

    ivovic

    (@ivovic)

    I think it’s important to accept that there’s just some stuff you can’t do…

    and putting borders and crap on your anchor tags is one of those things, unless you want it to happen on *all* anchor tags.

    ’nuff said.

    really, the effect isn’t worth it anyway – if you want underlines, use bloody underlines, not borders.

    ivovic

    (@ivovic)

    well, your page size is actually the same width as your header image, but unfortunately, it’s transparent.

    what isn’t the same width – is the background image, the white thing you can actually see. If you want that to match, you’ll have to change out the background as specified in the URL parameter in your CSS file.

    now, as for the real problem… that header image of yours is enormous in file size. For someone who doesn’t have it in their cache you start to think nothing’s coming, then all of a sudden it shows up.

    consider compressing it more, or something.

    ivovic

    (@ivovic)

    your issue with replacing the text with an image must have been just a punctuation problem — otherwise, it should have worked just fine.

    <?php if (in_category(9)) : ?>
       <img src="<?php bloginfo('template_directory'); ?>/images/brose1.jpg" alt="test system image" />
    <?php elseif (in_category(8)) : ?>
       <img src="<?php bloginfo('template_directory'); ?>/images/automation.jpg" alt="test system image" />
    <?php else : ?>
       [whatever else goes here]
    <?php endif; ?>

    I don’t like splitting up curly brackets like you have – it works, but it’s hard to keep track of, so when I use large amounts of HTML between conditionals, I like to use the alternate syntax, above.

    ivovic

    (@ivovic)

    on the right actually 😉

    Forum: Fixing WordPress
    In reply to: Multiple loops
    ivovic

    (@ivovic)

    your question about other reasons, and the purpose of rewind_posts are inextricably linked.

    the_post advances the post counter so that once a post has been output, it isn’t stepped through again. Rewind_posts takes that counter and resets it.

    This is useful if you want to reuse the query you just performed, for whatever reason. Instead of doing it again, rewind_posts will just allow you to step through it as though you’ve never outputted it before.

    This is particularly useful for ‘contents’ style links like I have at the top of my sidebar on the main page — as it saves you doing the query again.

    regardless of whether you change the query or not, rewind_posts just lets you use it as many times as you like.

    ivovic

    (@ivovic)

    wow, imagine that… being required to do your own research.

    how ghastly for you.

    ivovic

    (@ivovic)

    well, if you’re comfortable with your understanding of the rewriting part, then it’s important to note that the rewriting is being sent to the same file (index.php)

    wordpress then takes your URL and breaks it up according to your permalink options. First you tell it what the /x/y/z/ mean in the permalink settings, right? then it uses that information to deduce which of those is a category, and which is a page or a post name.

    using the most common settings as an example…

    if it finds /category/x/ it knows, that x is a category, if it finds just /x/ then it’s a page… since /9999/ is a number and if your permalinks are date based, then it’s most likely a yearly archive, right?… and so on.

    ivovic

    (@ivovic)

    godaddy is your problem… did you really expect them to say “yeah, uh, we put you on an overloaded server with 3000 users on it”

    every second site I find on godaddy is taking 6-11 seconds to process 40 queries.

    ivovic

    (@ivovic)

    set your permalinks to /howdy-friend/got-a-post-called/%postname%/for-ya/

Viewing 15 replies - 556 through 570 (of 1,478 total)