• Resolved diavolo32

    (@diavolo32)


    ?Hi!

    I have changed to Twenty Ten and it’s a great theme, but a little difficult to me to customize.

    I used the template link page and the sidebar moves to the bottom of the page, but i don’t know what’s wrong in the code:


    <?php
    /*
    * Template Name: Links
    */
    get_header(); ?>

    <div>

      <?php wp_list_bookmarks('between=
      &show_images=0&show_description=1'); ?>

    </div>

    <?php
    get_sidebar();
    get_footer();
    ?>

    If someone could help me… thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • try and use the divs #container and #content (as it is done in single.php for instance); there is some formatting connected to these divs.

    <?php
    /*
    * Template Name: Links
    */
    get_header(); ?>
    
    <div id="container">
    <div id="content" role="main">
    
    <?php wp_list_bookmarks('between=
    &show_images=0&show_description=1'); ?> 
    
    </div>
    </div>
    
    <?php
    get_sidebar();
    get_footer();
    ?>

    if this does not work, you could provide a link to your site, so someone might have a look at the css issue.

    Thread Starter diavolo32

    (@diavolo32)

    ?Thank you, it works!

    One question about Twenty Ten:

    Maybe, for a newbie -i have wordpress installed in a host since last two years-, TT is a theme with a lot of possibilities, but a little bit hard to understand. In most of the themes, comments.php and the comments structure are detailed in the same php file, and also with the rest, of files and templates, but in TT i must change the loop.php, and then find to change and translate to spanish also in functions.php, and it’s a bit harder to understand the architecture of the theme. A great advance, but maybe in tutorials of the theme must be examples with TT about page templates and so. Only a suggestion.

    Again, thank you very much, i was crazy searching in google and thinkin’: i’m a nerd, these seems to be very simple! ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘TwentyTen Error Template Page’ is closed to new replies.