Jump to content
MakeWebGames

Recommended Posts

Posted

Anyone got a 2 column ACP TPL they willing to share. I rather use 2 column for some mods coming up instead of one? I believe it would be better looking instead of straight list of data entry.

Posted (edited)

for using 2 columns just follow the bootstrap grid guidelines.  

<div class="row">
	<div class="col-md-6"> <!-- Change to col-md-4 for 3 cols per row -->
		<div class="form-group">
			<label class="pull-left">TITLE HERE</label>
			<input type="text" class="form-control" name="NAME"/>
		</div>
	</div>
	<div class="col-md-6"> <!-- Change to col-md-4 for 3 cols per row -->
		<div class="form-group">
			<label class="pull-left">TITLE HERE</label>
			<input type="text" class="form-control" name="NAME"/>
		</div>
	</div>
</div>

make sure to use the same code for starting a new row. (All cols in each row have to equal 12)

Edited by urbanmafia
  • Like 1

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...