• Resolved jfkc

    (@jfkc)


    I can’t remove the icon before any title of any pages.
    I just used this before –

    article.page .format-icon:before {
    content: none;
    }

    It’s probably incorrect but was working fine until I updated today.

    site here!!

Viewing 7 replies - 1 through 7 (of 7 total)
  • use:

    article.page .format-icon:before {
    content: none !important;
    }

    p.s.
    Look that you have wrong stuff in your custom css:

    // NAVBAR WRAPPER //
    add_filter('tc_navbar_display', 'rdc_navbar_display');
    function rdc_navbar_display($output) {
    return preg_replace('|navbar-wrapper clearfix span9|', 'navbar-wrapper clearfix', $output);
    }
    
    // LOGO //
    // center the logo
    add_filter('tc_logo_text_display', 'rdc_custom_center_brand');
    add_filter('tc_logo_img_display', 'rdc_custom_center_brand');
    function rdc_custom_center_brand($output) {
    return preg_replace('|span3|', 'span12', $output);
    }
    
    // TAGLINE //
    // center the Tagline
    add_filter('tc_tagline_display', 'rdc_tagline_display');
    function rdc_tagline_display($output) {
    return preg_replace('|span7|', 'span12', $output);
    }
    
    // SOCIAL ICONS //
    // center the output of tc_social_in_header:
    add_filter('tc_social_in_header', 'rdc_social_in_header');
    function rdc_social_in_header($output) {
    return preg_replace('|span5|', 'span12', $output);
    }

    php ode should stay in your child theme functions.php if you need it.. but never in a css.

    Thread Starter jfkc

    (@jfkc)

    Thank you very much.. I honestly know nothing about it I just copy and paste whatever I can find to build my site.. I tried what you gave me

    use:

    article.page .format-icon:before {
    content: none !important;
    }

    still won’t work.. if you go to my pages like ‘about us, contact us, etc.’ There’s this icon appearing before the page title.

    you have this:

    @media (max-width: 979px){
        .round-div, .span4 .widget-front .round-div {
            border-color: #1a1110;
        }
    
    article.page .format-icon:before {
    content: none !important;
    }

    You didn’t close the bracket for the media query. Make that become this:

    article.page .format-icon:before {
    content: none !important;
    }
    
    @media (max-width: 979px){
        .round-div, .span4 .widget-front .round-div {
            border-color: #1a1110;
        }
    }

    Hope this helps.

    Thread Starter jfkc

    (@jfkc)

    Thanks for correcting everything. I’m not really good at this T.T
    Still have that same problem though. I still see an icon before the title on my pages. Like if you go to palmeo page, service page or any other page for that matter. The
    article.page .format-icon:before {
    content: none !important;
    }
    isn’t working. The snippet right? isn’t working I suppose..
    Help me plssss..

    Thread Starter jfkc

    (@jfkc)

    Sorry my mistake it is working..Thanks alot!!!

    OK, 😀
    Glad you solved.

    agavazzoni

    (@agavazzoni)

    I just wanted to thank you guys for raising this issue and solving it. I had the same problem and thanks to you it took me just 5 mins to solve it!

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘icon before every title’ is closed to new replies.