Replies: 4 comments 4 replies
-
|
You don’t need to edit the default walker CSS files directly 👍. The clean way is:
For example, create /* custom.css */
.menu-item {
border-radius: 8px;
}Then in your [style]
custom_css = ["custom.css"]✅ Why this is better
This way you keep I hope this helps! Let me know if you want tips on targeting more specific walker elements or adding responsive tweaks. — Tushar Gupta |
Beta Was this translation helpful? Give feedback.
-
|
That sounds great! Having a default custom.css stub would make it much easier for others to discover this feature. If you open a PR, I’m sure it’ll help a lot of users. |
Beta Was this translation helpful? Give feedback.
-
|
Does this still hold true? I tried adding a [style]
custom_css = ["custom.css"]/* custom.css */
.box-wrapper {
border-radius: 8px;
}The only way I can get the style to update is by editing |
Beta Was this translation helpful? Give feedback.
-
|
you can create a theme folder in
additional_theme_location = "./themes/"
@import "../../../../.local/share/omarchy/default/walker/themes/omarchy-default/style.css";
.box-wrapper {
border-radius: 8px;
}With this approach your changes will not conflict with updates and it won't overwrite your changes |
Beta Was this translation helpful? Give feedback.

Uh oh!
There was an error while loading. Please reload this page.
-
Hi, ive looked for a while now but found no answer. Is it possible to make changes to walker css's? And I dont mean in the CSS of theme's. Themes can now change walker CSS with #917 but I dont want to add to the theme files, nor do I want to add to the default files. Is there a way to do it in .config/walker? Currently there is only a default.toml there and a folder called themes with autogenerated files which also are not suited for adding own customization (need me some rounded corners).
Beta Was this translation helpful? Give feedback.
All reactions