• Resolved marktmccabe

    (@marktmccabe)


    I have a little red line appearing on every page except my home page just under the header? Can anyone helpme remove it please.

Viewing 11 replies - 1 through 11 (of 11 total)
  • Can you post a link to a page that shows the issue?

    Thread Starter marktmccabe

    (@marktmccabe)

    Sorry I missed your reply yesterday!

    it appears on every page apart from the home page:

    https://website-development.org/managed_website/

    You can hide it with some custom CSS. If your theme has a built-in custom CSS option, use it; otherwise, get a custom CSS plugin and put:

    #intro.option1 #intro-core::after {
    border-bottom: none;
    }
    Thread Starter marktmccabe

    (@marktmccabe)

    Hi,
    I have inserted the above into my custom CSS and saved the stylesheet and it is still the same?
    Any other suggestions.
    https://website-development.org/managed_website/

    The problem is that you’ve accidentally commented out that custom CSS. In CSS, anything between /* and */ is a comment and is ignored by the browser. You need to place the code I suggested anywhere outside of the /* */ section for the browser to pick it up.

    Thread Starter marktmccabe

    (@marktmccabe)

    thank you so much for your help. that has worked a treat.

    Hi Stephencottontail –

    If I could ask something on this exact topic…

    The CSS code you supplied works perfect to remove the small red line at the top of every page for the Minimaze theme. However, would you happen to know how to:

    1) Instead of removing it, how do you change it to a different color?
    2) I also have that exact same line above my widget menu on all the pages exept my home page. This didn’t disappear with your code. How about removing that or if I wanted to change it’s color there also?

    Thanks!
    Kent

    Theme Author ThinkUpThemes

    (@thinkupthemes)

    Hi riffninja,

    I’ve put together some solution below for the header and sidebar, simply pick the one you want. I’ve set the color to green if you are choosing the change the color, however you can just replace the word “green” with any other color code you want to use.

    – Header – Remove red line:

    #intro.option1 #intro-core:after {
        display:none;
    }

    – Header – Change red line color:

    #intro.option1 #intro-core:after {
        border-color:green;
    }

    – Sidebar – Remove red line:

    #sidebar h3.widget-title:after {
        display:none;
    }

    – Sidebar – Change red line color:

    #sidebar h3.widget-title:after {
        border-color:green;
    }

    I hope this helps! Let us know how you get on. ??

    Excellent! Works awesome! Thank you! Changed to black to match logo. Looks great now. Love the theme, it has really helped me put together a nice site. Thanks again.

    Theme Author ThinkUpThemes

    (@thinkupthemes)

    No worries, glad I could help!

    If you get a chance we’d absolutely love for you to leave a review for Minamaze. Don’t worry if you don’t get a chance, we know how busy it can get when building a new site. ??

    If you have anymore questions let us know!

    Gladly, just did now for you. Thanks again!

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘remove little red line at top of the page’ is closed to new replies.