Find File: templates/gk_postnote/css/joomla.css
Find Line: 242
Which is
- Code: Select all
.contact label { display: block; float: left; }
Delete float left so it looks like below
- Code: Select all
.contact label { display: block; }
Also Line 241 which is below
- Code: Select all
.contact input, .contact textarea { display: block; margin-top: 25px; }
Change it to below
- Code: Select all
.contact input, .contact textarea { display: block; margin-top: 5px; margin-bottom: 10px; }
Optional
If you want all text to line up on the left try below
Find Line: 220 which is below
- Code: Select all
label.hasTip { margin-left: 5px; }
Change to 0 or delete code
- Code: Select all
label.hasTip { margin-left: 0px; }
See you around...