Re: Please review my blog
It looks like a blog...But that is probably oke with you?
But oke...Besides that I would ad some whitespace around the images that are presented within text.
This (for example) is your current image:
<img src="https://www.moreinfo247.com/Images/AffiliateStore/items/i_shop_antioxidantplus.jpg" align="right" />
On this page: Veriuni Antioxidant Plus with Grape Seed Extract
Here is how you could do it:
<img src="https://www.moreinfo247.com/Images/AffiliateStore/items/i_shop_antioxidantplus.jpg" align="right" style="padding:0 0 20px 20px" />
This way there will be 14px of white space to the left-side of a image and 14px of whitespce at the bottom of a image.
Of course you should ad this little piece of style into your stylesheet and not in the image-tag!
Like this:
img {padding:0 0 20px 20px;}
Only thing is that this way it will affect 'all images' used on your website (except for the ones hidden in your stylesheet of course).
To solve this you could ad a 'class' to images that you use in your text. For example:
<img class="text-image" src="https://www.moreinfo247.com/Images/AffiliateStore/items/i_shop_antioxidantplus.jpg" align="right" />
and in the stylesheet you then should put:
img .text-image {padding:0 0 20px 20px;}
Also I would remove the grey border around the images in the text. The grey line makes it look a bit cheap...
Ad the following to the earlier talked about style:
img .text-image {padding:0 0 20px 20px;border:0;}
To give the border another color:
img .text-image {padding:0 0 20px 20px;border:1px solid #black;}
Hope to have helped a bit!
Good luck with the webblog!
__________________
Erick Schluter
Linkage, a nice websites portal
Amsterdam . Netherlands
http://www.linkage.nl
|