Menghapus border, shadow dan rounded pada image pada blogger (template designer)

Masih di dunia template designer :) cara menghapus image border pada image yang ada di posting, atau bahkan semua image di blogger (template designer), tapi disini kita bahas dibagian post-body dulu.

Cari kode ini

.post-body img {
  padding: 8px;
  background: $(image.background.color);
  border: 1px solid $(image.border.color);

  -moz-box-shadow: 0 0 $(image.shadow.spread) rgba(0, 0, 0, .2);
  -webkit-box-shadow: 0 0 $(image.shadow.spread) rgba(0, 0, 0, .2);
  box-shadow: 0 0 $(image.shadow.spread) rgba(0, 0, 0, .2);

  -moz-border-radius: $(image.border.radius);
  -webkit-border-radius: $(image.border.radius);
  border-radius: $(image.border.radius);

}


Rubah dulu border: 0px solid $(image.border.color); Hapus kode yang berwarna tebal :) lalu Save template.

1 comment: