Hi,
I’m using “fashion style” on my page and this style’s colors are pink as you know. But when I open a post on my site, I see default theme color (blue) for a moment. I see blue colors every time.
Page link is here: http://mmoda.net
Did you see blue colors? How can I change default colors to “fashion style” colors?
-
This topic was modified 12 years by
rea-secret.
Hi,
You could edit your style.css file and using the replace feature replace this color #4db2ec (blue) with this one #ff4fb8 (pink) like this: http://screencast.com/t/LlpjBGwZ9O
Hope this works!
Thanks
It looks like good. Thanks for help Lucian…
-
This reply was modified 12 years by
rea-secret.
Hi again.
Is there another blue color code on css file? I see blue colors on different browsers, different pc’s.
Try doing inspect element on something that shows as blue. Even if it disappears after that initial load, browsers typically show you all css rules applying to an element and cross out the ones that have been overridden, like you see here:
http://www.screencast.com/t/lrkllbUBQV
Once you find out what’s styling the element, you can replace that too.
TheMediumUTM thanks for message. There are another blue colors (with different color code) in css. I change all of them.
Hi,
I changed color codes that Lucian write but there was no change. I tried TheMediumUTM’s suggestion and found another rgba color codes rgba(77, 178, 236, 0.7). I changed theese with pink color code. I think this code is for responsive but color is showing on desktop too. So I changed them. You can try but don’t forget, backup your css file.
-
This reply was modified 11 years by
rea-secret.
Hi,
In some places in style.css we use rgba value, you need to replace that to.
like replacing rgba(77, 178, 236, 0.7) to desired color converted in RGBA
You can use this to to convert a color from hex color to rgba http://hex2rgba.devoth.com/
Hope this help!