I have a problem with padding on my website. I used inspect tool, found where I can change it. In inspect mode I can change padding. On backend WordPress plugin editor, css I can't change the same thing. How can I change this? Pleasee see screenshot
Asked
Active
Viewed 25 times
1 Answers
0
You will need to modify the css file if the plugin don't allow you to modify it directly. Otherwise you can add your css modification directly into the Apparence -> Customize -> Additional CSS.

Romain Dereux
- 119
- 2
- 5
-
Will need more info on which part you want to change exactly, but basically you can use one of this : padding-left, padding-right, padding-top or padding-bottom. And then applied a value in percentage or px for example. an example for the class test will be : .test{ padding-top:5px; } – Romain Dereux Jun 20 '20 at 10:25
-
Do you have any code for mobile version? On my laptop is great but on mobile I need to change this padding. – Pj95 Jun 20 '20 at 10:34
-
You can use Media query : https://www.w3schools.com/css/css_rwd_mediaqueries.asp – Romain Dereux Jun 20 '20 at 11:05
-
Thanks I only see width, what about height? – Pj95 Jun 20 '20 at 11:15
-
Thanks for your help, I have fixed it on mobile. – Pj95 Jun 20 '20 at 11:37