Modify Padding on Side Bar

Modify Padding on Side Bar

by Ved Sam -
Number of replies: 3

Hi, I'd like to know more about sidebar modification. How can we modify the padding beside the icon to make more space? 

Here's the snip:


As you can see, the text collide with the icons.


And here's the inspected element:


In which line of code / which file do we need to add or modify so that there's space between the icon and the text?

Thanks in advance

Average of ratings: -
In reply to Ved Sam

Re: Modify Padding on Side Bar

by Ved Sam -
Additional note:

Theme used: enlightlite
and this thing only happens on Chrome, not on Firefox
In reply to Ved Sam

Re: Modify Padding on Side Bar

by Franco Pantoja -
Picture of Particularly helpful Moodlers


Hi

In the theme style css

The property seems to be padding

Just aply in Chrome

/* Chrome 29+ */
@media screen and (-webkit-min-device-pixel-ratio:0)
  and (min-resolution:.001dpcm) {
    div{top:0;} 
}

/* Chrome 22-28 */
@media screen and(-webkit-min-device-pixel-ratio:0) {
  .selector {-chrome-:only(; 
     property:value;
  );} 
}
Regards!!

Average of ratings: Useful (1)