Support » Theme: Terrifico » Terrifico page titles

  • Anonymous User 8411015

    (@anonymized-8411015)


    Trying out Terrifico.

    Managed to get it looking almost as I want.

    Can anyone tell me how to get rid of the small coloured box on the left of the page title – can’t seem to find anything in the CSS that deals with it.

    Cheers,

    Mike

Viewing 12 replies - 1 through 12 (of 12 total)
  • Can anyone tell me how to get rid of the small coloured box on the left of the page title – can’t seem to find anything in the CSS that deals with it.

    A link to your site would make that easier.

    small coloured box on the left of the page title

    in page.php, try and remove this section: <i class="icon-edit"></i> from:

    <a class="blog-title" href="<?php the_permalink() ?>"><h3 <?php post_class(); ?>><i class="icon-edit"></i><?php the_title(); ?></h3></a>

    or use CSS to hide it; for example:

    .page .blog-title i { display: none; }

    Thread Starter Anonymous User 8411015

    (@anonymized-8411015)

    Well, I’ve managed to get rid of the box.

    However, I now have a very frustrating issue.

    I am logged out of the site. My front-page is resolutely displaying a second title below the main title with and edit icon next to it. I am logged out – not editing anything. How do I get rid of it.

    It has the following class associated with it:
    <h3 class=”post-5 page type-page status-publish hentry”><i class=”icon-edit”></i>Welcome to WrightPlace</h3>

    Bizarre.

    Cheers,

    Mike

    please post a link to your site.

    Thread Starter Anonymous User 8411015

    (@anonymized-8411015)

    I’d love to put a link – not being allowed to.

    Thread Starter Anonymous User 8411015

    (@anonymized-8411015)

    Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    I’d love to put a link – not being allowed to.

    Sure you are. Just highlight the text and click the link button. Or just paste the link as you’ve just done.

    Thread Starter Anonymous User 8411015

    (@anonymized-8411015)

    Sorry about that Jan – a bad hair day 🙂

    edits in style.css seem to be overwritten by the other stylesheets – try using a custom CSS plugin to add the new styles; http://wordpress.org/plugins/search.php?q=custom+css

    or (lesser alternative) try to use !important with the styles;

    example:

    .blog-title i {
    display: none!important;
    }

    Thread Starter Anonymous User 8411015

    (@anonymized-8411015)

    Thanks for that.

    Yep tried that:

    #h3 .post-5 page type-page status-publish hentry {
    display:none!important;
    }

    Inspecting the element on the page shows the, I think, offending css.

    The style.css doesn’t have many of the ccs styles being displayed by the theme – no idea were to find them.

    Looking at the published page – it looks like I’m still logged in and able to edit pages. I’m not 🙂

    Thanks anyway.

    Perhaps will have to look at alternative themes – pity.

    Thread Starter Anonymous User 8411015

    (@anonymized-8411015)

    Tried the other tag – the one above sits with the post-title tag.

    .blog-title {
    display:none!important;
    }

    You are correct. That’s fixed it.

    Many thanks for your help.

    Cheers,

    Mike

    btw:

    the selector syntax in the CSS stylesheet has to be different from what you find in the html code <h3 class="post-5 page type-page status-publish hentry">:

    h3.post-5.page.type-page.status-publish.hentry {
    display:none!important;
    }
Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Terrifico page titles’ is closed to new replies.