Here is the prototype I am trying to to implement
Here is what I have so far - JFiddle
The highlighted part is what I am currently working on. I am trying to get some space between the paragraph contents and the components to the left of it(Profile 6, Profile 7)
I recognized this space as padding because it involves space between inner contents and the border. Because this is regards to the left side of the paragraph, I used padding-left.
From my JFiddle,
#content{
padding-left:10px;
}
Where content is the id of the paragraph(I checked it). However when I applied the style, nothing happened....
Does anyone know what the issue is? I saw one another thread on problems with padding but the issue there was that units was never specified. Here, I made sure to specify padding units(in px)
is adding an extra
](http://stackoverflow.com/questions/10763780/putting-div-inside-p-is-adding-an-extra-p)
tag is special, as it stands for *paragraph*, obviously a heading shouldn't be inside a paragraph.
– Stickers May 07 '15 at 21:27