Viewing 10 replies - 1 through 10 (of 10 total)
  • Moderator Jose Castaneda

    (@jcastaneda)

    THEME COFFEE MONKEY

    Use:

    .auth {
      display: none;
    }

    That should remove that little section for ya.

    Thread Starter troymiboy

    (@troymiboy)

    Amazing thanks for your help. Could you help me with another query. You see the sub heading within my page, do you know how I can remove this so my heading is the first thing you see ?

    Thanks again!
    Troy

    Moderator Jose Castaneda

    (@jcastaneda)

    THEME COFFEE MONKEY

    You mean the description?

    If that’s so, try:

    .site-description {
      display: none;
    }

    That would remove it site-wide.

    Thread Starter troymiboy

    (@troymiboy)

    Sorry not the description. I mean the menu thats on the page.

    For example on the home page before the bage there are two blue lines with Home> Home page. Id like to remove this.

    Thanks again for your time

    Hi Troy,

    I don’t really understand what do you want. As I got it, if you want to remove just 2 blue lines, delete these line

    #crumbs {
    border-bottom: 1px solid #2693BA;
    border-top: 1px solid #2693BA;
    }

    with the border-bottom is the blue line stands below and border-top is the blue line stands above.

    In case you want to delete all section that include Home>Home page, just delete entire #crumbs

    Good luck

    Thread Starter troymiboy

    (@troymiboy)

    Hi thanks for your reply, yeah I want to delete the entire thing in my child theme. How do I do that ? Coding isn’t my forte but I’m really eager to learn.

    Thanks for your reply
    Troy

    Hi Troy,

    Just find to this line and delete entire it

    #crumbs {
    font-size: 12px;
    font-weight: 600;
    color: #777;
    margin: 3px 0px 10px 0px;
    padding: 5px;
    font-style: italic;
    border-bottom: 1px solid #2693BA;
    border-top: 1px solid #2693BA;
    }

    I hope this will help you

    Thread Starter troymiboy

    (@troymiboy)

    Hi, this has managed to get rid of the blue lines and made the section smaller, but it still says Home>home page. Sorry for asking probably a simple question.

    Thanks again for your help

    Deleting CSS from the parent theme is not good advice – as those changes will get overwritten when the theme is updated.

    Troy – try ADDING this to the child theme style.css file:

    #crumbs {
       display: none;
    }

    Thread Starter troymiboy

    (@troymiboy)

    Fantastic thanks guys for your help. I Really appreciate it, hopefully one day I can return the favour to those in need.

    Seeing as I’m a major novice with this kind of stuff, do you know of any page builders I could use in the mean time before I get to grips with all this coding?

    Thanks again!

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘How to remove author and date from wrock-metro’ is closed to new replies.