• Resolved kanojia

    (@kanojia)


    Can you tell me how to change the color of the site title in the amp version if I don’t want to put the logo instead?

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

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

    (@milindmore22)

    Hello @kanojia

    Thank you for the support topic, By default, you should be able to control the Header text color using Customizer

    Goto Dahsboard->Appearance->AMP->Design->Header Text Color

    As I checked your AMP page it looks like you are using a plugin or custom code to add the site title and menu.

    In case you wanted to add the custom CSS on AMP Legacy theme you should be able to add custom CSS as follows:

    Use the following code in your child’s theme’s functions.php or in the custom plugin

    add_action( 'amp_post_template_css', function ( $amp_template ) {
    	// only CSS here please...
    	?>
    	.my-custom-class {
    		color: blue;
    	}
    	<?php
    } );

    You can learn more about customizing AMP legacy themes using our documentation and examples

    Thread Starter kanojia

    (@kanojia)

    No its not working by default, and m not using any plugin to change menu or site color the theme built-in

    Also, I tried by amp customization but its not reflect

    could you help me if this is not working by default

    Plugin Support Milind More

    (@milindmore22)

    Hello @kanojia

    I think it’s your theme bimber using custom templates for AMP, as I checked their demo they have the same markup <div class="g1-header"> as your site, so solution provided by us may not work

    However please try below,

    Please add the following code in your child themes functions.php or in a custom plugin

    add_action( 'amp_post_template_css', function ( $amp_template ) {
    	// only CSS here please...
    	?>
    	p.g1-mega.g1-mega-1st.site-title a {
              color: white;
            }
    	<?php
    } );

    In the case the above solution won’t work please contact your theme support as they can provide you solution that can work for their customizations

    Thread Starter kanojia

    (@kanojia)

    I think i would go with logo then, Thanks so much for your support!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Amp site title color change’ is closed to new replies.