This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet"/> | |
<!-- Nav pills --> | |
<ul class="nav nav-pills"> | |
<li class="active"><a href="#tab-1" data-toggle="tab">Tab 1</a></li> | |
<li><a href="#tab-2" data-toggle="tab">Tab 2</a></li> | |
<li><a href="#tab-3" data-toggle="tab">Tab 3</a></li> | |
<li><a href="#tab-4" data-toggle="tab">Tab 4</a></li> | |
</ul> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*--- Start Placeholder Color Changes -----*/ | |
.form-group input::-webkit-input-placeholder { /* WebKit, Blink, Edge */ | |
color: #777; | |
} | |
.form-group input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */ | |
color: #777; | |
opacity: 1; | |
} | |
.form-group input::-moz-placeholder { /* Mozilla Firefox 19+ */ | |
color: #777; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
How to Change the Default Gravatar on WordPress | |
Last updated on June 21st, 2012 by Editorial Staff | |
Share This Article | |
Special WordPress Hosting offer for WPBeginner Readers | |
How to Change the Default Gravatar on WordPress | |
Implementation of Gravatar is an uprising trend that is being seen on many WordPress Blogs. More and more blogs are following the trend by incorporating the gravatar. Not only bloggers, but theme designers are also focusing on making the best comment box for their WordPress themes and implementing gravatar with creativity. | |
While bloggers may know about gravatar and have an account, there are other users who don’t have a personal gravatar, so when they post a comment on a blog, a mystery man takes over their gravatar. You probably have seen it on many blogs, on a gray background a white guy. In this article we share a way to have a custom gravatar for your blog users which you can incorporate in your blog. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input:focus, | |
select:focus, | |
textarea:focus, | |
button:focus { | |
outline: none; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<input type="text" pattern="[0-9]{9,12}" value="" placeholder="Type your phone number" required/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div data-id="76957390" class="toggle-btn small domain_autorenew autorenew "> | |
<input type="checkbox" id="tog_AutoRenew_domain_76957390_0"> | |
<label for="tog_AutoRenew_domain_76957390_0">Auto-Renew</label> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(document).ready(function($){ | |
var deviceAgent = navigator.userAgent.toLowerCase(); | |
var agentID = deviceAgent.match(/(iphone|ipod|ipad)/); | |
if (agentID) { | |
// mobile code here | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#add 'node_modules' to .gitignore file | |
git rm -r --cached node_modules | |
git commit -m 'Remove the now ignored directory node_modules' | |
git push origin master |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- This is one of them --> | |
<li class="popup_login_form has_dropdown dropdown"> | |
<button class="dropdown-toggle" type="button" data-toggle="dropdown"> | |
<img width="12" style="margin-top: -6px" src="images/profile.png" alt=""> | |
<span class="angle_down"><img src="images/arrow_down_gray.svg" alt=""></span> | |
</button> | |
<ul class="dropdown-menu"> | |
<form action="after-login-home.html"> | |
<div class="from-group"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.fullscreen-bg { | |
bottom: 0; | |
height: 100%; | |
width: 100%; | |
left: 0; | |
overflow: hidden; | |
position: relative; | |
right: 0; | |
top: 0; | |
z-index: -100; |