Thread: Spacing issues
View Single Post
Old 07-18-2013, 03:29 PM   #4
theducks
Well trained by Cats
theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.
 
theducks's Avatar
 
Posts: 29,818
Karma: 54830978
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
Quote:
Originally Posted by RbnJrg View Post
Not necessarily

Try the following:

1. Go to your css styleseet.

2. Seek in the css file if there is an "img" tag and if it is styled (you'll see something like:

Code:
img {
   ...;
   ...;

}
where "...;" means any property).

3. If you found the "img" tag, then add at the end of it the following:

Code:
img {
   ...; /* old entry */
   ...; /* old entry */
   margin-top: 1em;  /* new entry */
   margin-bottom: 1em;  /* new entry */
   margin-left: 1em;  /* new entry */
   margin-right: 1em;  /* new entry */
}
4. If you DIDN'T find the img tag, then add in some place of your stylesheet, the following entry:

Code:
img {
   margin-top: 1em;
   margin-bottom: 1em;
   margin-left: 1em;
   margin-right: 1em;
}
Of course, instead of 1em you can try any others values at your will.

5. Save changes and see how the images are showed now.

Regards
Rubén
Code:
margin: 1em;
works (shortcut: when all values are the same)
theducks is offline   Reply With Quote