كيفية تغيير لون عنوان المنشور عند تمرير المنشور لأعلى في شريط القائمة العلوي؟

In Light theme I changed color of top bar to dark blue color. When I scroll post up it show post title color in Black. I would like to change post title color to white. What custom css I should add to make post title color white.


thanks!

إعجاب واحد (1)

If you right click anything in your browser you can inspect the element. This will give you the details you need to add CSS. For example:

Screen Shot 2020-07-24 at 5.47.45 PM

So you’d want to add:

.extra-info-wrapper .topic-link {
  color: white; 
}
5 إعجابات

@awesomerobot, thank you so much!

إعجاب واحد (1)