Theme Qua – Replace word "Portfolio" on homepage

  • Unknown's avatar

    Hi there!

    I would like to replace the word “Portfolio” displayed on the homepage of the Qua theme for another word. I tried hiding it using the following code

    h2.section-title {
    visibility: hidden;
    }

    but I found that the word “Blog” was also deleted, so I didn’t work for me.

    Is it possible to replace the term ou to hide only this term from the homepage?

    I appreciate your help!

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

  • Unknown's avatar

    Howdie,

    You can try this to hide it (it still occupies space):

    #portfolio-section h2.section-title {
    	visibility: hidden;
    }

    Or this to remove it entirely:

    #portfolio-section h2.section-title {
    	display: none;
    }

    Let me know if this helps!

    Best regards,

    Michael

  • Unknown's avatar

    It worked!! Thank you, Michael!

    Do you think it is possible to replace the word “Portfolio” for another one? That would be the perfect scenario for me.

  • Unknown's avatar

    You’re welcome. And sure, that’s possible.

    Replace the code above with this:

    #portfolio-section h2.section-title {
    	position: relative;
    }
    
    #portfolio-section h2.section-title::before {
    	content: "Your text";
    	display: inline;
    	position: absolute;
    	left: 0;
    	min-width: 80px;
    	background: white;
    }

    This won’t remove the word “Portfolio”, but it will place the text “Your text” on top of it so you can’t see it. Of course you can change “Your text” with whatever text you would like.

  • Unknown's avatar

    Awesome, Michael!! This is EXACTLY what I needed!

    Thank you, have a great day!

    Regards from Brazil. :)

  • The topic ‘Theme Qua – Replace word "Portfolio" on homepage’ is closed to new replies.