• eliscio

    (@eliscio)


    Hi All,

    I’ve gone through a ton of stuff today and have learned a few new things, but this one is escaping me right now. I am building a website and have all the pages linked and working.

    What is happening is that the page title is also showing up at the top of the main page just above the start of the content, so it’s rather redundant. Where the heck can I find this sucker to delete him!??

    Also, can you tell me which php file I should be looking at to change the “hover” color and also the hover text link??

    Many thanks!

Viewing 11 replies - 1 through 11 (of 11 total)
  • Michael

    (@alchymyth)

    there are many threads a bout ‘remove page title’ – so the forum search should give you something to read.

    if you’d like more direct suggestions, please supply more details, such as a link to your site and/or the name of your theme.

    Thread Starter eliscio

    (@eliscio)

    Thanks for the response. Sometimes, it’s just a matter of knowing what to search for so thanks for the response.

    my site is still in its infancy

    http://ai2-3d.com

    The theme is a modified twenty-ten. I made a copy, renamed it and then installed it. I then made my modifications (mostly hacking away by trial and error).

    Cheers,

    Eugene

    Thread Starter eliscio

    (@eliscio)

    Ok, got it with the right search 😉

    Will check on the hover color and text colors in menu…

    Michael

    (@alchymyth)

    rememmber to make backup copies

    your theme seems to be based on twenty ten 1.1:

    edit page.php;

    remove the following:

    <?php if ( is_front_page() ) { ?>
    						<h2 class="entry-title"><?php the_title(); ?></h2>
    					<?php } else { ?>
    						<h1 class="entry-title"><?php the_title(); ?></h1>
    					<?php } ?>


    if it is based on twenty ten 1.2, then edit loop-page.php, remove the same code section.

    Thread Starter eliscio

    (@eliscio)

    Thanks!

    darrenbond

    (@darrenbond)

    I see you’ve removed the page title from the top of the page.

    Changes to the link colours can be made in your stylesheet called ‘style.css’ in the template directory.

    In the Global Elements section of your stylesheet, change the colour code in following:

    a:active,
    a:hover {
    	color: #ff4b33;
    }

    Look through the rest of the stylesheet for ‘a:hover’ and change accordingly.

    Thread Starter eliscio

    (@eliscio)

    ok I’ve changed the 12 instances, but it still keeps the same color. My plan is to make the hover color white or yellow and the text black when the mouse is hovering. When the text is static, I just want it white, but it seems that it’s backwards now.

    Could it be in another php file. Something taking priority over these changes?

    darrenbond

    (@darrenbond)

    It works for me. Make sure you re-fresh your browser by pressing F5.

    Changing the text colour to white when your page is white doesn’t make much sense! 😉

    Thread Starter eliscio

    (@eliscio)

    I think there is a misunderstanding. The menu bar is a darker blue color so I just want the white to contrast on that, not on the main text page.

    I did refresh and changed all instances, but now I see that it affected the links in the content pages…that doesn’t make sense, right!

    darrenbond

    (@darrenbond)

    Ah right, I see.

    Change the colour back on all instances, and just modify the css in the =Menu section beginning with #access.

    #access li:hover > a,
    #access ul ul :hover > a {
    	background: #333;
    	color: #fff;
    }
    Thread Starter eliscio

    (@eliscio)

    lol…heading for the finish line…

    Thanks for the great assistance!

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Would like to remove Page Title above Content’ is closed to new replies.