• My blog is not showing up well in an iframe(go to my site and click on enter to see) and the background is not showing up.. HELP!!
    this is the code:
    <?php
    /* Don’t remove this line. */
    require(‘./wp-blog-header.php’);
    ?>
    <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”&gt;
    <html xmlns=”https://www.w3.org/1999/xhtml”&gt;
    <meta http-equiv=”Content-Type” content=”text/html; charset=<?php bloginfo(‘charset’); ?>” />
    <meta name=”generator” content=”WordPress <?php bloginfo(‘version’); ?>” /> <!– leave this for stats –>
    <style type=”text/css” media=”screen”>
    @import url( wp-layout.css );
    </style>
    <link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />
    <?php wp_get_archives(‘type=monthly&format=link’); ?>
    <?php comments_popup_script(); // off by default ?>
    <?php wp_head(); ?>
    </head>
    <body>
    <body background=”img/chobitchivenster.jpg”>
    <div id=”content”>
    <?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(); ?></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 include(ABSPATH . ‘wp-comments.php’); ?>
    </div>
    <?php endforeach; else: ?>
    <?php _e(‘Sorry, no posts matched your criteria.’); ?>
    <?php endif; ?>
    </body>
    </html>
    who can help me??
    And where are the archives put in? I wanna make an archives page but i cant find any links or maps they are saved in?! Help

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter pucca

    (@pucca)

    ohh yeah and how must i make the grey text as big as the other text?

    i have an issue with iframes as well, on my site…
    https://www.courtneyelizabeth.com

    Pucca – archives are called (in a default index) by this:
    <li id="archives"><?php _e('Archives:'); ?>

      <?php wp_get_archives('type=monthly'); ?>

    If you want to put that on another page, you will have to have the correct lines of php at the top of it – the ‘ do not remove’ stuff.
    The grey text is part of the ‘meta’ class. Look in wp-layout.css
    .meta {
    font-size: .75em;
    }
    make that number bigger.

    Is that also possible if i dont make a page in my blog directory? or must i make a page there with that?

    I think you can do it another directory, but you will get errors unless you make the path to ‘wp-blog-header’ correct.

    ohh aha..but how do i get the text in my iframe correctly?

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Few problems..’ is closed to new replies.