Before you ask please READ THIS

Page width & change font color

edited August 2012 in Airlock Posts: 4
Hello,

First I want to congratulate you for this great theme!

1. First question: Where can I change the page size (Page width)? I don't want 640px, I want to change to 870px.

2. Where can I change the color code of the title? I want to change it to # 6dc715.

3. We are many people who write articles on our site. I want to add down the title, between the date and comments, the name of the author. What code do I add and where?

Thank you!

Comments

  • AirAir
    edited August 2012 Posts: 10,970

    Hello xandru88

    1. You will find answer here http://support.apollo13.eu/discussion/111/content-size#Item_4

    2. This one is related. If you want to change color in dark version
    edit only for posts wp-content/themes/airlock/common/css/style-dark.css line ~616
    change:

    .post-blog h1.page-title{
        margin-bottom: 23px;
    }

    to:

    <pre>
    .post-blog h1.page-title{
        color: #6dc715;
        margin-bottom: 23px;
    }
    </pre>

    it should do it.

    3. Edit loop-single.php, find

    <?php $apollo13->posted_on(); ?><span>/</span>
                    <?php echo ' <a class="comments" href="' . get_comments_link() . '" title="">' . get_comments_number() . ' ' . __( 'comment(s)', TPL_SLUG ). '</a>'; ?>
                    <span>/</span>

    change to:

    <?php $apollo13->posted_on(); ?><span>/</span>
    <?php the_author_link(); ?>
                    <span>/</span>
                    <?php echo ' <a class="comments" href="' . get_comments_link() . '" title="">' . get_comments_number() . ' ' . __( 'comment(s)', TPL_SLUG ). '</a>'; ?>
                    <span>/</span>

    With regards.

    Post edited by Air on
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

In this Discussion