Forum Replies Created

Viewing 15 replies - 46 through 60 (of 82 total)
  • Just some javascripting. He put the info in a div and gave it a DHTML sliding effect onClick.

    You’ll need to enter the blog address as simply “mysite” and then go to mysite/blogs.php unless you have your server to use blogs.php as the index page. I think that’s what you mean at least…

    Thread Starter Brak

    (@brak)

    I’ve been to mosquito, still doens’t answer any questions. I tried scanning for the problem, but I dont’ think it was ever reported. Do I submit a bug and fix it myself? Seems a bit weird.

    1. 1.3 isn’t in beta. It’s in alpha
    2. We’re actually in alpha-4 now
    3. No, they’re not
    Forum: Your WordPress
    In reply to: An actors blog.

    I really like the overall design, Typography could use a bit of tweaking IMO though. I’d like to see a different/smaller font on the main text areas.

    Hmm… why go out of your way to bash IE? It’s the majority. It will be the majority. There’s no reason to hate on it.. it’s fair to be frustrated with it’s interpretations of some rendering, but I see no need to go out of my way to ‘break IE’ (not like it’s that hard, even pure CSS can crash the browser.
    Your blog’s… plain I suppose. And while the header is a cool effect, it would be nice to see it incorperated in another manner… using position:fixed (which, btw can be accomplished with IE7) there are so many cool opportunities to use transparent pngs (also available to IE through a few small hacks).

    Forum: Your WordPress
    In reply to: Your first posting?

    A detailed analysis on the design of your blog always works for me ??

    Forum: Fixing WordPress
    In reply to: 1.3 and PHP 5.0.1

    Yep, the apache process crashes. look into the bug in mosquito.www.ads-software.com … the fix is to move the login/logout functions out of the switch statement. It’s detailed in the bug.

    Your stylesheet is probably a relative path, like “styles.css”
    Therefore it’s looking for it in “/archives/%year%/%monthnum%/%day%/%postname%/styles.css” instead of “/styles.css” Make it an absolute path and you should be set! ??

    Do you have a blank line before that first <?php I’d be willing to bet that’s your problem. It’s either there or you’ve edited wp-blog-header.php somewhere.

    You have look what’s being spit out on line 1. <?xml… needs to be line #1. Not #2.

    I don’t see how it’s soooo weird to people. All you have to do is look at it in common sense. For example, what do you think this does
    <?php the_content(); ?>
    I’d be willing to bet it spits out the content of the post. It’s all pretty simple once you get your mind wrapped around it. Also be sure to check out wiki.www.ads-software.com and their template tags section, it explains all the tags and what they do.

    For starters, put this code into the main area
    <?php if ($posts) : foreach ($posts as $post) : start_wp(); ?>
    <?php the_date('','<h2>','</h2>'); ?>
    <div class="post">
    <h3 class="storytitle" id="post-<?php the_ID(); ?>">" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></h3>
    <div class="meta"><?php _e("Filed under:"); ?> <?php the_category(',') ?> — <?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(__('Edit This')); ?></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(); ?>
    -->
    </div>
    <?php comments_template(); // Get wp-comments.php template ?>
    <?php endforeach; else: ?>
    <?php _e('Sorry, no posts matched your criteria.'); ?>
    <?php endif; ?>
    <?php posts_nav_link(' — ', __('&laquo; Previous Page'), __('Next Page &raquo;')); ?>

    This will put your blog there. You’ll need to do some styling and such, but I hope this is pretty straight forward. What I’ve posted is only the main blog area (where new posts appear)
    Now, do you want the WP sidebar in your sidebar as well? Why don’t you try with what I gave you, and see if you can figure the rest out. Otherwise, don’t hesitate to post back here with some questions ??

    You need to keep localhost and change the username/password. localhost is almost universally spread throughout 99% of hosting companies. Every once in a while you need to put in 127.0.0.1, but that’s very rare.

    Thread Starter Brak

    (@brak)

    Congrats Thierry! I understand how proud it makes you to go to your stats and see nothin’ but referrers from CSSVault (mine was listed about a week before yours)
    Nice to see some more WP sites pop up in the Vault!

Viewing 15 replies - 46 through 60 (of 82 total)