Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1402730

    Hi,

    is there a way do change the color of the widgettitle in in different pages?

    For example: the page 1 have a red widgettitle in the sidebar and the page 2 have a green widgettitle color

    Thank you for helping!

    #1402856

    Hey Stefan,

    Thank you for the inquiry.

    Yes, this should be possible. You can define a different color for the widget title on different pages by using the unique class name of the page in your css modification. For example, the css rules below will change the color of the widget title to red for the page with the ID 123 and green for the page with the ID 456.

    .page-id-123 .widgettitle {
    	color: red !important;
    } 
    
    .page-id-456 .widgettitle {
    	color: green !important;
    } 

    Best regards,
    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.