Page Layout

  • Michael Bonner
  • Topic Author
  • Offline
  • New Member
  • New Member
More
11 years 1 month ago #24903 by Michael Bonner
Page Layout was created by Michael Bonner
The page layout for HelpDesk Pro is set up where the submit ticket page takes up an entire page. It's offset to the right from the page title (See Attachment). How do I get the form to sit more to the left so I can add sidebars without making the page look funny?
Attachments:

Please Log in or Create an account to join the conversation.

More
11 years 1 month ago #25515 by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic Re: Page Layout
Hi Michael

I am sorry for lately response. I am on new year holiday and only come back to office this afternoon. Do you still need help with this issue ? If Yes, please submit a support ticket sending us information of your site so that we can help you to check and solve the issue.

Regards,

Tuan

Please Log in or Create an account to join the conversation.

More
11 years 1 month ago #25627 by David McCreary
Replied by David McCreary on topic Re: Page Layout
I had the same issue. here's how i sorted it:

administrator/components/com_helpdeskpro/assets/bootstrap/css/bootstrap.css

Find this starting at line 1787

.form-horizontal .control-label {
float: left;
width: 160px;
padding-top: 5px;
text-align: right;
}

.form-horizontal .controls {
*display: inline-block;
*padding-left: 20px;
margin-left: 180px;
*margin-left: 0;
}


And change to this:

.form-horizontal .control-label {
float: left;
width: 60px;
padding-top: 5px;
text-align: left;
}

.form-horizontal .controls {
*display: inline-block;
*padding-left: 20px;
margin-left: 80px;
*margin-left: 0;
}


And it will look like the attached shot.

It would probably be best to tuck the JCE editor that shows here, UNDER the title "message" to give it a bit more room, perhaps Tuan can post here how to do that. I could probably figure it out given enough time...
Attachments:

Please Log in or Create an account to join the conversation.

More
11 years 1 month ago #25657 by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic Re: Page Layout

It would probably be best to tuck the JCE editor that shows here, UNDER the title "message" to give it a bit more room, perhaps Tuan can post here how to do that. I could probably figure it out given enough time


Could you please explain more details about this ? You want to replace the HTML editor with a simple textarea input box ? Please let me know so that I can guide you ?

Thanks for sharing the css code modification :).

Tuan

Please Log in or Create an account to join the conversation.

More
11 years 1 month ago #25708 by David McCreary
Replied by David McCreary on topic Re: Page Layout
my mistake i was seeing the JCE editor when logged in as admin, from front. normal view for tickets is fine.

Please Log in or Create an account to join the conversation.

Moderators: Tuan Pham Ngoc