CiviCRM Community Forums (archive)

*

News:

Have a question about CiviCRM?
Get it answered quickly at the new
CiviCRM Stack Exchange Q+A site

This forum was archived on 25 November 2017. Learn more.
How to get involved.
What to do if you think you've found a bug.



  • CiviCRM Community Forums (archive) »
  • Old sections (read-only, deprecated) »
  • Developer Discussion (Moderator: Donald Lobo) »
  • Best Approach to Full Screen Page in Extension?
Pages: [1]

Author Topic: Best Approach to Full Screen Page in Extension?  (Read 416 times)

lee.gooding

  • I post occasionally
  • **
  • Posts: 83
  • Karma: 1
    • Clear River Church
  • CiviCRM version: 4.5
  • CMS version: Drupal 7
  • MySQL version: 5.7
  • PHP version: 5.3
Best Approach to Full Screen Page in Extension?
May 11, 2015, 01:33:15 pm
I'm in the process of developing an extension for a tablet KIOSK. I have implemented jQuery Mobile for theming the page that will be presented to a user. The problem I have is that I need to have the page cover the CiviCRM interface (fill the entire browser view). Does anyone have any suggestions for an approach to a full-screen page within an extension? I've tried using CSS, but it is getting messy and thought I should check in...

Thanks!

Lee

lee.gooding

  • I post occasionally
  • **
  • Posts: 83
  • Karma: 1
    • Clear River Church
  • CiviCRM version: 4.5
  • CMS version: Drupal 7
  • MySQL version: 5.7
  • PHP version: 5.3
Re: Best Approach to Full Screen Page in Extension?
May 11, 2015, 01:40:23 pm
I guess I was overly complicating it. I just had to hide a few things:

Code: [Select]
/* HIDDEn ELEMENTS */
#tabs-wrapper {
    display:none;
}
.breadcrumb{
    display:none;
}
#header {
    display:none;
}
#civicrm-menu {
    display:none;
}

I'd still be interested to know if anyone has a better way of doing this.

Pages: [1]
  • CiviCRM Community Forums (archive) »
  • Old sections (read-only, deprecated) »
  • Developer Discussion (Moderator: Donald Lobo) »
  • Best Approach to Full Screen Page in Extension?

This forum was archived on 2017-11-26.