By Yuka Kiyohara on Saturday, 08 February 2014
Posted in Technical Issues
Replies 3
Likes 0
Views 687
Votes 0
Hello,I would like to change the padding of the blog Categories.
I would like to change padding: 10px 0px to padding: 0px 0px by custom css code.

However,I checked the css code by browser of developer tool and there is !important command on module css like this .

.ezb-mod .mod-item {
overflow: hidden;
position: relative;
padding: 10px 0px !important;
}
So,I could not change the padding.
Please tell me how to change the padding by custom css ,thanks.
Hello Hideki,

You need to be more specific in your CSS in order to override the css. You can use the codes below:


body .ezb-mod .mod-item {
padding: 0 !important;
}
·
Saturday, 08 February 2014 21:14
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi,Mark.Thank you for your help.
·
Saturday, 08 February 2014 21:42
·
0 Likes
·
0 Votes
·
0 Comments
·
You are most welcome
·
Saturday, 08 February 2014 21:57
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post