Skip to content
View in the app

A better way to browse. Learn more.

Web Designer Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Fading buttons

Featured Replies

Hi just edit in your main.css :

#navfolionew a {
    background: none repeat scroll 0 0 #F2F2F0;
    border: 1px solid #666666;
    border-radius: 50%;
    color: #666666;
    font-weight: normal;
    opacity: 1;
    padding: 10px;
    text-decoration: none;
    transition: background-color 0.4s; /*only add background-color to transition */
}

Edited by NiBi18

#navfolionew a {
	padding: 10px;
	border-radius: 50%;
	text-decoration: none;
	border-bottom: none;
	color: #666;
	border: #666 1px solid;
	font-weight: normal;
	background: #f2f2f0;
	-webkit-transition: background-color 0.2s ease;
        -moz-transition: background-color 0.2s ease;
        -o-transition: background-color 0.2s ease;
        -ms-transition: background-color 0.2s ease;   
        transition: background-color 0.2s ease;
}
	
#navfolionew a:hover {
	padding: 10px;
	margin:0;
	border-radius: 50%;
	color: #fff;
	background: #ef0403;
	font-weight: normal;
	}

Try this. changing background-color is correct, you also had transitions in your hover state which was conflicting.

Create an account or sign in to comment

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.