• Resolved Telje

    (@telje)


    Hi!

    This is surely a great and neat little theme but I want to make it even cleaner; how do I prevent the page titles from showing? ??

    I also would like to know if there’s a simple way to change the font colors?

    Thanks in advance!

    //Mike

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author malvouz

    (@malvouz)

    Make title not showing:

    Go to dashboard -> appearance -> editor

    Open header.php

    find this code

    <header>
    		<h1><a href="<?php echo home_url(); ?>"><?php echo get_bloginfo('name'); ?></a></h1>
    		<span></span>
    		<p><?php echo get_bloginfo('description', 'display'); ?></p>
    		<?php get_sidebar('left'); ?>
    		<?php get_sidebar('right'); ?>
    		<div class="clear"></div>
    	</header>

    then delete this code

    <h1><a href="<?php echo home_url(); ?>"><?php echo get_bloginfo('name'); ?></a></h1>
    		<span></span>
    		<p><?php echo get_bloginfo('description', 'display'); ?></p>

    Change font color

    Open style.css

    To change a blue color:
    find this code with Control+F

    /* --- Link --- */
    #content h2 a {
    	color:#468ACA;
    }
    a, #content h2 a:hover{
    	text-decoration:none;
    }
    a:hover {
    	text-decoration:underline;
    }
    /* --- Link Colors --- */
    a, ul.sidebar li.widget_text a {
    	color:#468ACA;
    }

    and changes 468ACA with color code that you want.

    Please remark this question as resolved if you enough for my answer and rate our theme.

    Thanks,
    Malvouz

    Thread Starter Telje

    (@telje)

    Great! ?? Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hide title & font color’ is closed to new replies.