• Resolved romi74

    (@romi74)


    Hi,

    I installed WP Dark Mode, everything is OK, but I ask you to help me with something. How do I change the black color in the Next and Previous (background in text), Search (black text in the search box), Subscribe (black text in the e-mail box) buttons, and White text color in article (it’s too white)? Can you help me?

    View post on imgur.com

    View post on imgur.com

    View post on imgur.com

    Thank you!

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author htmlpie

    (@htmlpie)

    Hi,

    Checking your site, those buttons do not have any dark background right now, like in the screenshot, so it’s not really easy to know why they are so, but some CSS like this should help prevent them:

    #main .pen_content_previous span,
    #main .pen_content_next span {
      background: transparent !important;
    }

    The text in those field is known as “placeholder”, and you can change its color like this:

    #page input::-webkit-input-placeholder,
    #page select::-webkit-input-placeholder,
    #page textarea::-webkit-input-placeholder {
    	color: #fff !important;
    }

    You can change the selector to “#content”, or “#pen_header”, and have multiple copies of this code with different colors for different parts. In order to find the ID or class name of the container of the text field: Do a right click on the text field, select “Inspect element” and check the HTML for a container with an ID or class name, like <div id="something">, and use that as #something in the above CSS.

    Also, CSS can be added through Appearance -> Customize -> Additional CSS.

    Hope it helps!

    Thread Starter romi74

    (@romi74)

    Hi,

    I made changes to CSS myself and I think it looks good. Do you think something needs to be changed? If so, can you help me?

    Thank you!

    Theme Author htmlpie

    (@htmlpie)

    Hi there,

    No, it’s looking good now.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Dark Mode’ is closed to new replies.