Add a CSS Reset form in Cwicly Global Styles > GLOBAL DESIGN
@penatech shared a great blog where I found a lot of tricks. One of them is the CSS Reset code that could be add in the global settings: Modern CSS Reset / Global Styles
2 Likes
Hi there @weedor,
This is already provided by default in Cwicly.
Great article, a very nice read.
Where is this setting? I haven’t been able to find it.
Also, what does it offer?
Good point
Maybe there should be one to disable it, so one can use a custom or another one.
Just a quick thought.
It’s just the base.css in Cwicly. Check it out to find details
Do I have to dig into my filemanager to get to it?
Yeah, the path should be /wp-content/plugins/cwicly/assets/css/base.css
It’s actually just the following:
/* NORMALISE */
*,
::after,
::before {
box-sizing:border-box
}
body {
margin:0
}
a {
text-decoration:none;
color:inherit;
cursor:pointer;
transition:inherit
}
button {
border-width: 0;
font-family: inherit;
font-size: inherit;
font-style: inherit;
font-weight: inherit;
line-height: inherit;
padding: 0;
cursor:pointer;
background:initial
}
figure {
margin:0
}
input::-moz-focus-inner {
border:0;
padding:0;
margin:0
}
dd,
ol,
ul {
margin:0;
padding:0
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin:0
}
p {
margin:0
}
cite {
font-style:normal
}
fieldset {
border-width:0;
padding:0;
margin:0
}
input {
font-size:14px;
font-family:inherit;
}
/* NORMALISE */
Great point!
Starting to wonder if @Marius knows Cwicly better than I do