Okay
  Public Ticket #1540287
Disable Porfolio Header text
Closed

Comments

  •  2
    cmd84beyond started the conversation

    Hi again, how may I disable the header in the portfolio? I have a custom H1 I want to use instead of the default. 


    Thanks! 

  •  9,006
    Tahir replied

    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):

    .single-portfolio .row .col.section-title h1 {
        visibility: hidden !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  2
    cmd84beyond replied

    Thank you, this is close, but is there a way to remove the section below the header? I was able to accomplish it here http://dev.geckogroup.com/portfolio/the-concord-grape-discovery-center/ but I had to use negatives in padding and it messes with the responsiveness on mobile. 


    Thanks for your help Tahir


  •  9,006
    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):

    .single-portfolio div#page-header-wrap {
        display: none !important;
    }

    Thanks


    ThemeNectar Support Team 

  • Romina replied

    Hi, im trying to do the same and I've copied the top code into CSS and a few errors occur, can you make it work for my website? www.nawhinthemaking.com


    It comes up with errors for div# (says its over qualified) and use of !important

  •  3,030
    Andrew replied

    Hi Romina,

    It would have been best you open your own ticket on the same but could you give us a direct link to where your header sections is on your site. We could not find it.

    Thanks.

  •  3,030
    Andrew replied

    Hi Romina,

    Could you try this CSS to remove that navigation area from the single portfolio item pages:

    .single-portfolio #full_width_portfolio #portfolio-nav{
        display:none;
    }
    #full_width_portfolio .row .col.section-title{
        display:none;
    }
    .single-portfolio .row.project-title .container .title-wrap{
        padding-bottom:0px;
    }
    

    add it to salient \ general settings - css script related - custom css code.

    Hope this helps.