Gazette theme: CSS mess-up: need to remove , above all featured images

  • Unknown's avatar

    I was trying to customize my blog with CSS, I am new to this I was trying things out to see if anything changed or not……
    Oops, and then all of a sudden a , was placed above my featured images which I now can’t remove…..
    I need really need help with removing these mistakes….

    I already cleaned up my (self found&altered) codes but that didn’t help much………

    This is my mistake in html

    `<div class=”entry-meta”>
    <span class=”cat-links”>
    COLLAGES
    ,
    PORTRAITS

    My blog is antoniacollages.com

    Thanks,
    Best Antonia

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    The misplaced , is visible on the home page and on the “collage” catergory page only…

  • Unknown's avatar

    Hi there, let’s start with this.

    .entry-header .cat-links {
        display: none;
    }

    After you add that, try deleting this from your CSS as it appears you were trying to use it to do what the above CSS does.

    .entry-meta a {
        display: none;
        font-weight: 400;
        padding: 6px 24px;
    }
  • Unknown's avatar

    @sacedpath the first code removes the , !!!!
    I am happy, thank you

    But the second code you mentioned isn’t in the css list anymore…
    The one below is,

    .entry-meta a {
    	display: none;
    	padding: 6px 24px;
    	font-weight: normal;
    }

    should i remove that one?

  • Unknown's avatar

    Yes, you can remove that from your custom CSS since what it was changing is not gone with the other rule we added.

  • The topic ‘Gazette theme: CSS mess-up: need to remove , above all featured images’ is closed to new replies.