FF & Chrome vs MS Edge button mouseover issue

The place to talk about things that are related to CMS Made simple, but don't fit anywhere else.
Post Reply
wmdvanzyl
Forum Members
Forum Members
Posts: 214
Joined: Fri May 06, 2011 12:48 pm

FF & Chrome vs MS Edge button mouseover issue

Post by wmdvanzyl »

Hi All.

I am not very well informed as to the plethora of differences of how browsers render elements, so i could use a little help with this one.

On this page: http://www.modh.co.za there are two "buttons", but they are just regular links with styling. In Firefox and Chrome the mouseover event triggers (ie the colour change and pointer change) correctly, but in MS Edge it only activates on a small area of the button.

Button code:

Code: Select all

<div class="child">
  <h1>MODH DESIGN</h1>
  <a href="http://www.modh.co.za/arch" class="button">
    <i aria-hidden="true" class="fa fa-lg fa-home"></i> ModH Architecture
  </a>
  <a href="http://www.modh.co.za/web" class="button">
    <i aria-hidden="true" class="fa fa-lg fa-desktop"></i> ModH Websites
  </a>
</div>
CSS:

Code: Select all

.landing a {
  display: inline;
  font-family: Helvetica,"Open Sans",sans-serif;
  font-size: 16px;
  pointer-events: auto !important;
  text-decoration: none;
}

.button {
  background: #000 none repeat scroll 0 0;
  border-radius: 10px;
  color: #fff;
  margin-right: 40px;
  padding: 30px;
  text-align: center;
}
Is there anything obvious, or do i need to delve deeper?
Post Reply

Return to “The Lounge”