skip to Main Content

I am using Conbix theme and I want to delete/hide this section. How can I do it with CSS ?

Class name is about__one-left-experience

I tried something but did not work. I need help.

If you want to check the website.

enter image description here

2

Answers


  1. Try this:

    .about__one.dark__image .lg-mb-30 {display: none;}
    

    There are better ways to do it like:

    .about__one-left {
        display: none;
    }
    

    But in this way it will only be hidden but will still occupy the space and because of that the right side content will be on the right.

    Login or Signup to reply.
  2. .about__one-left-experience {
      display: none;
    }
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search