• Resolved gettinger

    (@gettinger)


    Hello,

    I’m using a child theme for Zerif-Light and I just want to remove the red line in the pages. I can’t find where that would be on the style sheet, and I’m at a loss for something that should be relatively easy.

    Can someone help me out?

    EXAMPLE: https://test.actionunited.org/about-us/

    The red line under ABOUT US.

    Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi,

    I’m not sure but you should probably look for something like this in your css file:

    .red-border-bottom:before

    You can then change to height of the line. Let me know if it works.

    Madalin

    (@madalin_themeisle)

    Hi @gettinger,

    If you want to remove the red line you have to comment some lines in style.css:

    .entry-title:before {
    	position: absolute;
    	margin: auto;
    	z-index: 1;
    	content: "";
    	width: 10%;
    	height: 2px;
    	background: #e96656;
    	bottom: -9px;
    	left: 0;
    }

    So, you need to put /* at the beginning of the line 1022 and */ at the end of the line 1032.

    Thread Starter gettinger

    (@gettinger)

    Woo! Thanks Madalin, it worked! Plus, you also just made me realize how to make changes in my child theme… so kudos for all the help! hahaha

    Madalin

    (@madalin_themeisle)

    Hi @gettinger,

    We are glad that you are satisfied. Thank you for choosing our products.

    Best regards,

    Madalin

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Removing the Red Line from Pages’ is closed to new replies.