• Thanks so much for your support so far!

    I have another question: on the category pages, it displays the date below each post–perhaps because I have widened the width of my content to 605px. But, is there a way to remove the date all together? I went into the category template and removed the line which contained the date, but it still persists.

    Any guidance would be great.

    Here’s an example of what I mean: https://www.valisemag.com/category/destinations/europe/czech-republic/

Viewing 8 replies - 1 through 8 (of 8 total)
  • Theme Author MageeWP

    (@magictheme)

    Hi,valisemag
    If you do not want to show the date, you can change the CSS file,add follow code in style.css

    .entry-aside{
    	display:none;
    }
    .post-entry:hover{
    	background:none;
    }

    Thread Starter valisemag

    (@valisemag)

    Thanks MageeWP, but it doesn’t seem to work. Dates are still showing up despite adding that code to the end of my style.css file (I added it before the last } )

    You inadvertently added that code to the final @media query, so your added CSS rules only applied when the browser window’s width was greater than 1200px. Delete the code you added and put it at the very end of the file, after the final }.

    Thread Starter valisemag

    (@valisemag)

    I have done this such that the code ends:


    }
    .col-lg-offset-11 {
    margin-left: 91.6667%;
    }
    }
    .entry-aside{
    display:none;
    }
    .post-entry:hover{
    background:none;
    }

    But, the dates are still there. Sneaky fellows. Thanks for the help so far, hopefully we can get it resolved!

    Theme Author MageeWP

    (@magictheme)

    I had checked the css file, it has many @meida{} to adapt different screen or browser, your code may be overrode by other codes.
    Delete the code you added and search the key words .entry-aside and .post-entry:hover(use the hot key ctrl+f) in style.css,
    clear the code in
    .entry-aside{
    codes
    }
    and
    .post-entry:hover{
    codes
    }

    see if it works.

    Thread Starter valisemag

    (@valisemag)

    That fixed it! Thanks!!

    Thread Starter valisemag

    (@valisemag)

    Now they are back! What could have caused that??

    Thread Starter valisemag

    (@valisemag)

    Any guidance on this would be great. I definitely removed the correct part of the code, and the dates disappeared for a while, but now they’re back.

    Thanks.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Dates on Category Pages’ is closed to new replies.