• Hello,

    On my blog: https://www.luckystarlouis.com I would like to change all my text to black. I havent been able to find the right place in the style.css
    Furthermore as you can see i have a hidden sidebar – can I change the three stripes which reveal the sidebar from grey to black?

    Hope someone can help my.
    Thank you

    Regards

Viewing 12 replies - 1 through 12 (of 12 total)
  • Hello,

    You can try this in your Custom CSS to achieving that:

    .entry-title, .entry-title a, .entry-title a:visited {
    color: #000;
    }
    .entry-meta a {
    color: #000;
    }

    Thank you.

    Thread Starter GodskR

    (@godskr)

    That worked fine.
    But can i change the three stripes which reveal the sidebar?

    Thank you

    Hello,

    Can you please give a screenshot of the strip that you talking about.

    Thank you.

    Thread Starter GodskR

    (@godskr)

    Its the one in the upper right corner.

    Thank you

    Hello,

    You can can try this in your Custom CSS for that:

    .menu-toggle:before, .menu-toggle:after {
        border-color: #000;
    }
    .menu-toggle {
    border-color: #000 -moz-use-text-color -moz-use-text-color;
    border-color: #000 -webkit-use-text-color -webkit-use-text-color;
    border-color: #000 -o-use-text-color -o-use-text-color
    }

    Thank you.

    Thread Starter GodskR

    (@godskr)

    That makes the two at the bottom black. But not the one in the top, as you can see her:
    https://www.luckystarlouis.com

    Thank you.

    Hello,

    You can try this instead:

    .menu-toggle:before, .menu-toggle:after {
        border-color: #000;
    }
    .menu-toggle {
    border-color: #000 !important;
    }

    Thank you.

    Thread Starter GodskR

    (@godskr)

    That did the job except when you mark it its the two in the bottom that fade. Not the upper one.
    Thank you for your patients!

    Thread Starter GodskR

    (@godskr)

    And the text in the sidebar isn’t black – why is that?

    Thank you.

    Here is the CSS I used to reveal the word “Menu” to make it more clear. I had to readjust the border information to make it all come out right. I had help and I’m frankly not sure why it did the job. Maybe it will help you toward your goal.

    .menu-toggle {
    background: transparent;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    float: right;
    margin: 2.25em 1.5em 0 0;
    padding: 22px 0;
    position: absolute;
    top: 0;
    right: 0;
    height: 25px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    }

    .menu-toggle {
    color: #262626;
    }

    .menu-toggle,
    .menu-toggle:before,
    .menu-toggle:after {
    border-top: 4px solid #262626;
    }

    Hello,

    Sorry for the mistake you can try this:

    .menu-toggle:before, .menu-toggle:after {
        border-color: #000;
    }
    .menu-toggle {
    border-color: #000 !important;
    }

    Thank you.

    Hello,

    for the sidebar text you can try this:

    .slide-menu .widget h1 {
    color: #000;
    }
    .slide-menu .widget a {
    color: #000;
    }

    Thank you.

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘[Theme: Minnow] Change alle text to black sidebar’ is closed to new replies.