• Resolved loem1942

    (@loem1942)


    Two issues here. First I’m trying to change the color of all horizontal rules across the site, but only the horizontal rule lines and nothing else. So I dropped:

    hr {
    color: #fff;}

    Into the style.css of my child theme (which the file is confirmed to work in). Yet the rules are still grey. Any idea why this isn’t working and how I can fix it? I figured this one should be simple.

    Secondly, I just want to remove the page’s title being echo’d in the page body of every single page by the Gillian template. How do I remove that?

    Thanks!

    The page I need help with: [log in to see the link]

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

    (@addweb-solution-pvt-ltd)

    Hello loem1942,

    Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer

    .sidebar .widget_recent_entries li {
        border-bottom: 2px solid #fff;
    }
    
    .sidebar .widget a:link, .sidebar .widget a:visited {
        border-bottom: 2px solid #fff; 
    }
    .entry-title {
        display: none;
    }

    Hope this will helps you.

    Thanks.

    Thread Starter loem1942

    (@loem1942)

    Hello AddWeb,

    That did work for removing the page titles. Appreciate that! The problem with the rule color still exists. To elaborate, any rules created with this tag:
    <HR>
    Are the color #c4c4c4 (making them very faint on that background) no matter what I try to do. The rest of the page rules are fine.

    Thanks.

    AddWeb Solution

    (@addweb-solution-pvt-ltd)

    Hello loem1942,

    Try the below css code

    hr{
    background-color:#fff !important;
    }

    Hope this will helps you.

    Thanks

    Thread Starter loem1942

    (@loem1942)

    That’s exactly what I needed AddWeb. It works perfectly. Thank you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘CSS HR Issue and Page Title Removal’ is closed to new replies.