Can you please inform me how to change the background and custom font sizing for my header widget please?
Hi there,
You need to add custom CSS code to do the change. Please add the code below to X > Launch > Options > CSS:
.x-widgetbar {
background-color: #2d646b;
}
.x-widgetbar .h-widget {
color: #fff;
text-shadow: none;
}
.x-widgetbar p {
color: #fff;
text-shadow: none;
}
.x-widgetbar a {
color: #fff;
}
The code above explained:
- The first part of the code is for the background color. Feel free to change the Hex color code to whatever you like.
- The second part is the widget title color.
- The third part is the text color for paragraphs.
- And the fourth part is the anchor link color.
Thank you.
1 Like
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.