• On the mobile version of my website the lower menu bar still shows. On the regular version it is exactly how I would like it to look. How can I make this disappear?
    Also on the home page below every post it shows the category and all the tags. I would like this gone as well but would like for the line to stay as it creates some division. any help on how to do this would be great! I found a similar question on the forum but unfortunately it erased the line between each post so this will not work.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi Jess

    can you share a link to your site for us to have a look?

    Thanks

    Thread Starter jessetjames87

    (@jessetjames87)

    Gladly thanks for the response. Its http://www.craigslist-er.com/ to clarify what I meant by the second change is underneath every post summary on the first page of the website it lists in grey the category, tags and a very thin black line above. I would like all this removed and I would like the larger black line below to stay. Thank you!

    Thread Starter jessetjames87

    (@jessetjames87)

    With the main menu I just want it removed and leave a black line. I found the css that removed the entire menu including the line. Not the top menu the main.

    Hi Jess

    You can add the following css to make it work.

    Add the following css in a child theme‘s style.css file or by using a custom css plugin.

    To remove the categories and tag but have the line use the following css

    .entry-meta .cat-links,
    .entry-meta .tag-links {
        display: none;
    }

    If you want to keep the thicker black line and not the thinner one add the following

    .entry-footer {
        border-width: 0 0 3px;
    }

    for vice versa, add the following

    .entry-footer {
        border-width: 1px 0 0;
    }

    To remove the menu and keep the black thick line add the below css

    #main-navigation ul {
        display: none;
    }
Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘menu above and category below posts’ is closed to new replies.