Security

last person joined: 20 hours ago 

Forum to discuss Enterprise security using HPE Aruba Networking NAC solutions (ClearPass), Introspect, VIA, 360 Security Exchange, Extensions, and Policy Enforcement Firewall (PEF).
Expand all | Collapse all

ClearPass Guest Registration Page Title Location

This thread has been viewed 6 times
  • 1.  ClearPass Guest Registration Page Title Location

    MVP
    Posted Jul 30, 2013 02:30 PM

    Hey AirHeads Community,

     

    I'm currently having an issue with ClearPass Guest self-registration page. I have a logo displaying and on the far right of the page it says "Guest Registration". I want "Guest Registration" to display under the logo. Thought it would be in CSS code, but haven't been able to figure out what to change.

     

    Any ideas how to change this to work?

     

    Thanks!



  • 2.  RE: ClearPass Guest Registration Page Title Location

    MVP
    Posted Jul 30, 2013 02:35 PM

    *update* 

     

    We did find that if you configure the custom skin and choose advanced up top that you are given a textbox to enter header information. You can statically assign the logo using HTML, then by using a break you can assign the title under the logo. Only problem is logo does not resize depending on device because it's not CSS it's using HTML. 

     

    If anybody knows how to get it to re-size through CSS or any additional ways of accomplishing this, please advise. 

     

    Thanks



  • 3.  RE: ClearPass Guest Registration Page Title Location

    EMPLOYEE
    Posted Jul 30, 2013 07:40 PM

    Try embedding the logo not in the logo selection under Custom Skin but actually in the HTML as an image source.  So...leave the logo blank and add the logo in the header I believe.



  • 4.  RE: ClearPass Guest Registration Page Title Location

    EMPLOYEE
    Posted Jul 30, 2013 08:47 PM

    Here is where to place the logo using the insert object drop down at the bottom right. This is an excerpt from the custom skin configuration screen.

     

    The logo file is uploaded via insert content item:

     

    Screen Shot 2013-07-30 at 8.45.14 PM.png



  • 5.  RE: ClearPass Guest Registration Page Title Location

    Posted Jul 31, 2013 01:51 PM

    One option that you have is to check for a "small screen" device and output different HTML:

     

    {if $_wpl.browser.small_screen}

    <img src="public/small_screen_logo.png" width="100" height="50" border="0"/>

    {else}

    <img src="public/logo.png" width="150" height="75" border="0"/>

    {/if}

     

    There are also ways of doing this just with CSS - this can get messy and is not recommended unless you have a professional Web developer handy.

     



  • 6.  RE: ClearPass Guest Registration Page Title Location

    MVP
    Posted Jul 31, 2013 01:55 PM

    Thanks for the repsonses. We were able to use HTML to embed the image using the img tag and set a height and width that suited both mobile devices and pc browsers. 

     

    Thanks for all the help from all!