• Resolved stephenhardy1978

    (@stephenhardy1978)


    Hi There,

    I really need to be able to remove all traces of ‘About the Author’ and the comments sections. I would also like to remove all Meta Data & side bars in posts.

    Thanks

    Stephen

Viewing 12 replies - 1 through 12 (of 12 total)
  • Thread Starter stephenhardy1978

    (@stephenhardy1978)

    Figured it out – added the following custom CSS

    .blog-post-date-area
    {
    display:none;
    }
    .blog-post-lg
    {
    display:none;
    }
    .blog-author
    {
    display:none !important;
    }
    .blog-author-social
    {
    display:none !important;
    }
    .author-description
    {
    display:none !important;
    }
    .author-box
    {
    display:none !important;
    }
    .comment-author-link
    {
    display:none !important;
    }

    Thread Starter stephenhardy1978

    (@stephenhardy1978)

    I also removed the reference to the sidebar in “simple.php”

    Furthermore I removed the Blog-Author section which in turn removed the comments section

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    This might be easier on the eye:

    .blog-post-date-area,
    .blog-post-lg,
    .blog-author,
    .blog-author-social,
    .author-description,
    .author-box,
    .comment-author-link {
        display: none !important;
    }

    Thread Starter stephenhardy1978

    (@stephenhardy1978)

    Final point however, our contact email in the footer widget is long(wish) and the end is missing – how do you decrease the font size in this? Whats the CSS for this?

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Try:

    .footer-contact-detail-section .col-md-4:last-child h4 {
        font-size: 10px;
    }

    Thread Starter stephenhardy1978

    (@stephenhardy1978)

    Cheers Andrew

    I just changed the section in

    <h4><?php echo $footer_callout_setting[‘front_contact3_val’]; ?></h4>

    to

    <h5><?php echo $footer_callout_setting[‘front_contact3_val’]; ?></h5>

    index-footer-callout.php

    did the trick ??

    Do you happen to know how where the icons “fa-*” happen to reside so I can choose appropriate ones?

    Thanks

    Stephen

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    The icons are generated from a font family in CSS. The font family is “font awesome”. This should help: https://fortawesome.github.io/Font-Awesome/icons/

    Thread Starter stephenhardy1978

    (@stephenhardy1978)

    Thats amazing! Cheers Andrew!

    Final one for the evening – can I make the thing red bar at the foot of the page slightly larger i.e height wise?

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Yes, the red bar is a border style set on the footer:

    .footer-copyright-section {
        border-bottom: 5px solid #db2723;
    }

    You just need to increase the “5”

    Thread Starter stephenhardy1978

    (@stephenhardy1978)

    Thanks so much Andrew

    Thread Starter stephenhardy1978

    (@stephenhardy1978)

    oops not that bit – the bit below right at the very bottom, in mine its a thin red line.

    Also trying to edit the cookie crum trail on blog posts so that it is either totally below or above the heading… so to ask – any ideas where that might live?

    Theme Author webriti

    (@priyanshumittal)

    Kindly create separate ticket for separate issues.

    Closing this one..

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Remove sections’ is closed to new replies.