Archive for the ‘css’ Category

1
Jun

Form tag & Extra Vertical Space Problem

   Posted by: Vivek Khokhar

Fix:
form style=”margin-top: 0px;margin-bottom: 0px;”

19
Apr

textbox image alignment problem

   Posted by: Vivek Khokhar

Problem:

text_field(:member, :dob,:size=>”20″, :maxlength => “50″,:tabindex=>”22″) img_tag

Fix:

text_field(:member, :dob,:size=>”20″, :maxlength => “50″,:tabindex=>”22″) img_tag {:style=”position:absolute”}
9
Oct

HTML Page Breaks

   Posted by: Vivek Khokhar

This is on page 1.

This is on page 2.

Or you can pick a tag where you want the page to break. In this example I used the H3 tag

In the header add this line

Wherever the

is in the body of your page it will produce a page break.