I am trying to set two consecutive lines in one line by using negative padding or negative margin. But for correct positioning i have been setting fixed margins which distort everything then the resolution is changed. The link to the website is http://www.ideas2ignite.com/wordpress. I have tried fitting two blocks in one line using table but couldn’t. If anybody could suggest me how to go about setting this.
Thanks in advance
you probably may want to make an unordered list that contains those two consecutive items, so you have
Next thing you want to do is to wrap them inside a
div, and then in your css file, set the<li>float attribute to befloat:left;This way, they will appear next to each other without needing of negative padding/numerical positional adjustment.