• Resolved sfuma

    (@sfuma)


    I want to make a white site header. The color of links is not displayed. How to solve this problem?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Milind More

    (@milindmore22)

    Hello,

    please share your Site Health information and site URL privately by filling this form, so we can investigate further.

    Thread Starter sfuma

    (@sfuma)

    This is a common problem. Doesn’t work on 3 sites with different theme templates, including WordPress.com
    screenshot

    Plugin Support Milind More

    (@milindmore22)

    Thank you for reporting we are investigating more on this issue.

    You can add custom CSS to reader mode leagacy themes by adding the following code to your theme’s function.php or in a custom plugin, you can also follow this guide for additional information on customizing the reader mode legacy theme.

    
    add_action(
    	'amp_post_template_css',
    	function() {
    		// only CSS here please...
    		?>
    		a,
    		a:visited,
    		.amp-wp-comments-link a
    		{
    			color:#000;
    		}
    		<?php
    	}
    );
    

    alternately, you can choose a different theme as a reader theme or add a child theme as a reader theme, our guide has more info it.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Header and link color’ is closed to new replies.