• Resolved ashley_c

    (@ashley_c)


    Anyone know how to remove the grey background behind the text on the big title section > main content?
    (The grey background with the text that reads “CSMotorwerks
    Specializing in your BMW needs”)

    Here’s the link:
    https://motorwerks.tigerstylebook.com/

    Is there a CSS code I can enter that removes this? I’ve done it before, but can’t remember what code I used.

    Thanks so much!

Viewing 4 replies - 1 through 4 (of 4 total)
  • AddWeb Solution

    (@addweb-solution-pvt-ltd)

    Hello ashley_c,

    => Put below css code into Additional CSS textarea (Dashboard >> Apperance >> Customize) then click on Save & Publish button.
    => If there is no Additional CSS option then put below css code into your current theme’s style.css file located at wp-content/themes/your_current_active_theme/ folder.

    
    .intro-text {
     background: transparent;
    }
    

    Note : All Changes you done in style.css or other file are gone when you update theme. So prefer Child Theme

    Hope this will helps you.

    Thread Starter ashley_c

    (@ashley_c)

    Hi! Thanks for the quick response. Unfortunately, this code didn’t work for me. I tried putting it in the Additional CSS. When that didn’t work, I tried it on the theme’s style.css file and it didn’t work either.

    Any other suggestions?

    Thank you so much!

    Thread Starter ashley_c

    (@ashley_c)

    HOWEVER, when I put this code in:

    .intro-text {
    display: none;
    }

    It removes the grey background, BUT it also removes the text. ??
    Any ideas on how I can keep the text?

    Thread Starter ashley_c

    (@ashley_c)

    I GOT IT!

    .intro-text {
    background: transparent !important;
    }

    Thanks for pointing me in the right direction!!!!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Big Title Section – remove grey background behind text’ is closed to new replies.