Customize/Change Gadget Color in Blogger Dynamic Views. Currently, the gadget's color is set to black by default, with white font, but you can customize it with your own custom colors and font as well.
Background represents the background color of gadget, while color represents the gadget font color. You can add your own background and fonts colors.
How To Customize Blogger Gadget With Colors
- Go to Blogger Dashboard --> Design --> Template Designer
- Then click on Advanced and then on Add CSS tab.
- Copy the code shown below and Paste it inside the box and click on Apply to Blog
.gadget-icons, .gadget-title, .gadget-content, .ss {
background: red !important;
color: yellow !important;
}
background: red !important;
color: yellow !important;
}
Background represents the background color of gadget, while color represents the gadget font color. You can add your own background and fonts colors.
- If you want to adjust the gadget link color, add the following code to your CSS.
.gadget-icons a, .gadget-title a, .gadget-content a, .ss a{
color: white !important;
}
color: white !important;
}
No Comments
Click to Add a New Comment