Okay
  Public Ticket #1518746
Hide bars before category and date
Closed

Comments

  • Tiffany Yeh started the conversation

    I've hidden the .meta-author on the blogs but there is a bar that precedes the date on a single blog post and also the category on the main blog page. How do I hide the bar?

    Also on the main blog page, how do I move the date to be below the title, not below the excerpt?

  •  8,466
    Tahir replied

    Hey Tiffany,

    Please provide the page url so that i can write up the custom css for whats possible.

    Thanks


    ThemeNectar Support Team 

  • Tiffany Yeh replied

    I've changed the layout. How do I remove the category on the top, remove the author, and move the date below the title of the article? http://wao.fnj.mybluehost.me/blogs/case-studies/

  •  2,744
    Andrew replied

    Hey there,

    Thanks for reaching in,

    You can use the following CSS to get rid of the author and category. I'm afraid to the best of my knowledge moving the date is not possible. 

    .nectar-recent-posts-single_featured .grav-wrap .text { 
        display:none!important;
     }

    Set this CSS up in Salient > General Settings > CSS/Script Related > Custom CSS Code

    Hope this helps,

    Regards

  • Tiffany Yeh replied

    I know it has something to do with the .php files-- I just don't know which one. I edited the single.php file to rearrange the data outputted, but I can't figure out which .php file is for the blog landing page. 

    Andrew-- also the CSS you gave me doesn't work for the blog landing page: http://wao.fnj.mybluehost.me/blogs/case-studies/ 

    Please help!

  •  8,466
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    span.meta-category {
        display: none !important;
    }
    .post-area.featured_img_left article .grav-wrap .text a {
        display: none !important;
    }
    .nectar-recent-posts-single_featured.multiple_featured .active .grav-wrap {
        display: none !important;
    }

    Thanks


    ThemeNectar Support Team 

  • Tiffany Yeh replied

    EDIT -- never mind, I just downloaded another plugin since this was too much of a headache


    Thanks Tahir!

    Also for the dropdown widget on Wordpress on http://wao.fnj.mybluehost.me/blogs/case-studies/ to display categories, the categories aren't clickable. Do you know why this would happen? And there's also two instances where the label "category" is displayed but I only wrote the label once (see attachment).

  •  8,466
    Tahir replied

    Hey Again,

    I see you got it working . 

    Be.st 


    ThemeNectar Support Team