Skip to content

Instantly share code, notes, and snippets.

@dengel
Last active December 31, 2015 04:29
Show Gist options
  • Save dengel/7934911 to your computer and use it in GitHub Desktop.
Save dengel/7934911 to your computer and use it in GitHub Desktop.

Information

Website for Sprint's MVNO is poorly designed, and seems to only work properly on Internet Explorer.

To make the website more usable under FireFox, changes in CSS are needed.

To accomplish this, we use FireFox Add-on Stylish.

Setup

  1. Launch FireFox
  2. Go to Tools -> Add-ons
  3. Click on Get Add-ons
  4. Search for: Stylish
  5. Install Stylish
  6. Restart FireFox

Configuration

  1. Launch FireFox
  2. Go to Tools -> Add-ons
  3. Click on User Styles
  4. Click on Write New Style
  5. Name: MVNO Sane
  6. Tags: empty
  7. On the main text area add the block below and Save
@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document domain("mvno.sprint.com") {

#leftcolumn {
   float: left !important;
}

#leftColumn ul {
   width: 150px !important;
}

table:nth-child(2) tr:nth-child(3) {
   position: relative !important;
}

}

Verify

  1. Log in to https://mvno.sprint.com/
  2. Allow pop-ups and sign in.
  3. Verify controls, menus, buttos work.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment