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

    (@addweb-solution-pvt-ltd)

    If you don’t update your site theme then you can simply put below css code into your ‘style.min.css’ file located at: einfachnurmiteuch.ch/wp-content/themes/pixova-lite/layout/css/ folder.

    h1.intro-cta-title {
      position : unset !important;
    }

    If you update your theme you need to create a child theme of your current active theme then put above css code into child theme’s style.css file. Follow this link for child theme tutorial. Because if you update your theme all the changes you done in theme files will be discarded, so I suggest you to create child theme.

    Hello @taina015

    To remove the yellow line on the homepage at first you need to add the Custom CSS through the plugin.

    You can find many plugin to add custom CSS. Below link is the reference for one of the plugin.

    Custom CSS

    After installing the plugin you will find the custom CSS in Admin Panel / Appearance / custom CSS.

    Here copy and paste below CSS.

    h1.intro-cta-title {
        display: none;
    }
    
    .light-section-heading:after {
           display: none;
           }

    I hope this will resolve your issue.

    Best Regards!!

    Thread Starter taina015

    (@taina015)

    Perfect, thank you very much @teeru!! It works.

    Is it also possible to remove the yellow lines at the other sites?

    Kind regards

    Hello @taina015

    Yes it is possible to remove the line in other sites. For this i would like to suggest the below CSS.

    
     .blog-intro .intro-title:after, .single .intro-title:after, h1.intro-cta-title:after {
              display:none;
              }

    I hope this will resolve your issue .

    Regards!!

    Thread Starter taina015

    (@taina015)

    perfect! thank you so much!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Remove yellow line’ is closed to new replies.