Thread: Spacing issues
View Single Post
Old 07-18-2013, 02:23 PM   #2
RbnJrg
Wizard
RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.
 
Posts: 1,551
Karma: 6613969
Join Date: Mar 2013
Location: Rosario - Santa Fe - Argentina
Device: Kindle 4 NT
Quote:
Originally Posted by holdit View Post
... but I would have to add spacing for each element, correct?
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

Last edited by RbnJrg; 07-18-2013 at 02:25 PM.
RbnJrg is online now   Reply With Quote