This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

Mosaic preset
#1
Could I obtain the CSS file associated with the Mosaic presets?
Furthermore, would it be possible to import the modified file after updating it?

Or is there an easier way to make a preset?
Reply
#2
Such modifications will be available only locally. What is the widget name do you refer too?
------------------------------
Ctrl+F5
Reply
#3
(11.03.2025, 12:38)Daniel Wrote: Such modifications will be available only locally.  What is the widget name do you refer too?

This is not for a specific widget; it is for the entire Mosaic, allowing us to create a preset theme with our company colors, fonts etc.
I apologize for not initially referring to it as a preset theme.
Reply
#4
In this case, just go to Settings & themes, modify as needed and export your settings. You can then import it to any of your projects.
------------------------------
Ctrl+F5
Reply
#5
okay, thank you, I just hoped there were a css file where I could change fonts, buttons(widgets) etc
Reply
#6
I'm trying to change the color/size of the first letter of all widgets in Mosaic

Code:
.title-inner::first-letter {
  font-size: 18px;
  font-weight: bold;
  color: yellow;
}

What am I doing wrong?
Reply
#7
::first-letter works only on block elements. Add this to CSS:
Code:
.title-inner {
  display: block;
}
Reply


Forum Jump: