1

(5 replies, posted in Theme Showcase)

Your background image is too narrow, it has grey bars on the sides because of this, which makes it look a bit odd.

.widgetcontainer ul { list-style: none !important; }

This should work

3

(127 replies, posted in Theme Showcase)

clarkesam wrote:

Wow.. Cool Site you got there... I just want to suggest something. Since Anime is for kids and mind like kids.. [...]

Most anime is aired around midnight in Japan, it's for the most part NOT aimed at kids. Screenshots of the anime Freezing as an example..

I think a bit light background would suite the concept of

Well... actually, a lighter version is in the works. But laziness wins.

4

(127 replies, posted in Theme Showcase)

BiznessMan wrote:

What type of display type is being used for the Nieuwe anime section? I'm trying desparatly to get something similar for my site but I can't figure it out  sad

That's a custom tapestry from my NullCore II Child Theme, it's basically a Quick Preview with some custom styling.

5

(127 replies, posted in Theme Showcase)

Okay. Work and my other hobbies are a bit time-consuming at the moment so I won't be of much help through the end of february. After that I'll probably pick up where I left off. Updating nullcore, updating some plugins, etc. etc.

For now: a little bit of a redesign for my page, I didn't really like my header so I made some little changes to the navigation: http://www.animeblog.nl/

6

(127 replies, posted in Theme Showcase)

Been a little busy with other things, I'll be back answering several stuff in a few days perhaps.

Change the first line, add the second

#header                 {  width:980px; margin:auto; background: #FFF2C6; }
.logo { padding-left: 0px; }

.blog-name a:link, .blog-name a:visited    { display: none; }
this blocks it.

Something like this?

.wp-caption p { text-align: justify; }

or


.wp-caption p { text-align: left; }

I've pieced together the attachment.php from Arras and Twenty ten.

<?php get_header(); ?>

<div id="content" class="section">
<?php arras_above_content() ?>

<?php if (have_posts()) : the_post(); ?>
    <?php arras_above_post() ?>
    <div id="post-<?php the_ID() ?>" <?php arras_single_post_class() ?>>

        <?php arras_postheader() ?>

        <div class="entry-content single-post-attachment clearfix">

        <a href="<?php echo wp_get_attachment_url(); ?>" title="<?php echo esc_attr( get_the_title() ); ?>" rel="attachment"
        <?php $attachment_size = apply_filters( 'arras_attachment_size', 900 );
        echo wp_get_attachment_image( $post->ID, array( $attachment_size, 9999 ) );     ?>
        </a>
        <?php wp_link_pages(array('before' => __('<p><strong>Pages:</strong> ', 'arras'), 
            'after' => '</p>', 'next_or_number' => 'number')); ?>
        </div>
        
        <div class="navigation clearfix">
            <div class="floatleft"><?php previous_image_link( null ); ?></div>
            <div class="floatright"><?php next_image_link( null ); ?></div>
            </div><!-- #nav-below -->
        
        <?php arras_postfooter() ?>

        <?php 
        if ( arras_get_option('display_author') ) {
            arras_post_aboutauthor();
        }
        ?>
    </div>
    
    <?php arras_below_post() ?>
    <a name="comments"></a>
    <?php comments_template('', true); ?>
    <?php arras_below_comments() ?>
    
<?php else: ?>

<?php arras_post_notfound() ?>

<?php endif; ?>

<?php arras_below_content() ?>
</div><!-- #content -->

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

11

(13 replies, posted in General Help)

In user.css:

.widgetcontainer ul { list-style: none !important; }

12

(4 replies, posted in General Help)

With a custom link linking to your site.

13

(6 replies, posted in General Help)

Fine, fine. I get the message smile
Change this line in tapestries.php

<abbr class="published" title="<?php the_time('c') ?>"><?php printf( __('Posted on %s', 'arras'), get_the_time(get_option('date_format')) ) ?></abbr> | <span><?php comments_number() ?></span>

to

<abbr class="published" title="<?php the_time('c') ?>"><?php printf( __('Posted by %s', 'arras'), get_the_author() ) ?> <?php printf( __('on %s', 'arras'), get_the_time(get_option('date_format')) ) ?></abbr> | <span><?php comments_number() ?></span>

No, the "more" button is there too, this one is 'next page", it comes with the plugin.

15

(12 replies, posted in General Help)

That should be doable with a simple piece of code. I'll take a peek later.

It seems like it's a plugin indeed. I'll look when I get home.

I use these buttons in the WYSIWYG editor of posts.
http://www.watkijkikoptv.info/mp3/newtpage.png

Yes.

Well, hi, I'm running it with no problems at all. See: http://www.animeblog.nl/besprekingen/animepilotwatch/

You have to insert page breaks in pages yourself of course, but you did that already, right?

.logo { padding-left: 0px; }

21

(127 replies, posted in Theme Showcase)

Most of the images I use for my thumbnails are 640x250.

Is that code from a plugin or something?

23

(127 replies, posted in Theme Showcase)

I try to make sure that all the main content of a thumbnail is somewhat centered. All the stuff on the left- and rightside is not important.

Not yet. I've been looking for it, but it's a weird thing. The fancybox javascript is not active in the backend of WordPress, ONLY when the Arras Theme Options are clicked on. It's weird.

You have put this in user.cs
.featured-entry .entry-summary    { padding: 0 20px; margin: 0; display: block; }

The 20 should be 15.

(p.s. get Firebug: http://getfirebug.com/ )