Hi, I have uploaded a new WP theme to my site - howtobuy-online.com/how-to-buy-currency-online and I want to have the same space between the lines in the numbered lists as in the rest of the text. How can I do this? Thanks
Thank you it worked - but now the numbers are too far to the left so they are not even in the page - how can I move it a little to the right? Which parameter do I change? Thank you
Hi wp mod. I see ... the content will be 600 px width and has the 20px left margin isnt it ? oh by the way we should specify the width because :we use : << float left ? Thanks
No, #content will be 680 (the original 660 + 20padding) as there is no margin. The thing is, padidng's like fat so the stuff inside #content won't be 680px wide... just like the organs of a fat person don't stretch from their right side to their left side. Padding doesn't increase the inner space, but it increases the outside edge of a box, like a fat person getting fatter makes them wider but doesn't give them more room inside for internal organs. It used to be required that floats have a declared width. This is no longer true with current CSS but it's a good idea to do anyway 99% of the time. A widthless float will by default shrink-wrap to the width of the content inside... but if the content inside is something that can shrink and grow like text (since text can wrap to the next line) browsers will act differently without a stated width, and won't necessarily have the box be the same width. IE may wrap too early, or too late, compared to Firefox. So it's a good idea to put widths on your floats.