How to remove padding and shadow in blogger?

1 replies
  • WEB DESIGN
  • |
Hi,

Anybody here have an idea how to remove shadow and padding in blogger for mobile view.

In desktop/laptop view its fine but in mobile, still showing a very big padding and shadow and I couldn't even change the text that being set to justify.

Here's my blog: http://www.dailylnfo.com

Thanks.

Brian McClain
#blogger #padding #remove #shadow
Avatar of Unregistered
  • Profile picture of the author savidge4
    Originally Posted by Brian McClain View Post

    Hi,

    Anybody here have an idea how to remove shadow and padding in blogger for mobile view.

    In desktop/laptop view its fine but in mobile, still showing a very big padding and shadow and I couldn't even change the text that being set to justify.

    Here's my blog: Everything You Wanted To Know About Your Topic! : [Tagline]

    Thanks.

    Brian McClain
    If you are familiar with CSS in Blogger, all you have to do is add ".mobile" in fromt of the CSS you want to change.

    So this:
    Code:
    .Image img, {
      border:0;
      padding:0;
      box-shadow: none;
      background: none;
    }
    Would end up looking like:
    Code:
    .mobile .Image img, {
      border:0;
      padding:0;
      box-shadow: none;
      background: none
    }
    Hope that Helps
    Signature
    Success is an ACT not an idea
    {{ DiscussionBoard.errors[11269411].message }}

Trending Topics