• Resolved balajim

    (@balajim)


    i am not able to remove author name & date from frontage slider and from posts as well.

    Can anyone please help me with this? My Theme name: eMag by eVisionThemes

    I have used this code in costume CSS: .slider-section .slider-desc{ display: none; }

    But its not working.

    Thanks

Viewing 1 replies (of 1 total)
  • CSS is the right tool for that.

    You need to locate the id or class of the element you need to hide and apply the right “hiding” rules to it.

    Use your browser’s element inspector for that.

    Once you find the right id or class to target, use it as follow:

    .your-target-element {
      /* first method */
      display: none!important;
      /* second method */
      visibility: hidden!important;
      /* third method */
      opacity: 0!important;
      /* fourth method */
      position: absolute!important;
      top: -9999px!important;
      left: -9999px!important;
    }

    If doesn’t have to be all of them. Pick the one that works on your case.

    If it’s not working for you, you either target the wrong element or your custom-style doesn’t load in the right order and gets overruled by another style. Try to add “!important” to enforce the rule and see if it works for you.

    Generally speaking, you should be fine by using either your child theme style sheet or WordPress embed custom CSS feature that’s available in most themes.

    Good luck!

Viewing 1 replies (of 1 total)
  • The topic ‘How to Remove author name & date from FrontPage slider and from pasts?’ is closed to new replies.