I'm designing a webpage now, and using Firebug I'm trying to figure out what decides the image margin on an image I am using on this page;
The reason for this, is that I want the margin to be bigger, but I can't for the life of me figure out which parametre to change. Here's the piece of code Firebug points me to;
So I'm thinking it's either ngg-singlepic or ngg-right, which I have both tried to change the margin parametres on, but nothing changes, the margin is still the same, no matter what I set it to. Here's the CSS;
Anyone got any idea on what prevents me from making this image margin any bigger? All tips would be greatly appreciated!
The reason for this, is that I want the margin to be bigger, but I can't for the life of me figure out which parametre to change. Here's the piece of code Firebug points me to;
Code:
<a class="shutterset_singlepic11" title="" href="http://www.kristinemarie.org/wp-content/gallery/profilbilder/01_lysere.jpg"> <img class="ngg-singlepic ngg-right" title="Kristine Marie" alt="Kristine Marie" src="http://www.kristinemarie.org/wp-content/gallery/cache/11__320x240_01_lysere.jpg"> </a>
Code:
.ngg-singlepic { display:block; border:1px solid #000000; } .ngg-left { float: left; margin-right:10px; } .ngg-right { float: right; margin-left:10px;

Comment