How To Create Gradient Color in CSS?

You may use sample CSS code below:

.gradient {
background: #48b6c7; /* Old browsers */
background: -moz-linear-gradient(top, #48b6c7 0%, #1ca1ac 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#48b6c7), color-stop(100%,#1ca1ac)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #48b6c7 0%,#1ca1ac 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #48b6c7 0%,#1ca1ac 100%); /* Opera11.10+ */
background: -ms-linear-gradient(top, #48b6c7 0%,#1ca1ac 100%); /* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#48b6c7', endColorstr='#1ca1ac',GradientType=0 ); /* IE6-9 */
background: linear-gradient(top, #48b6c7 0%,#1ca1ac 100%);
}

Example:

What Is the URL to Set Up Google Split Testing?

Here is the URL:

https://www.google.com/analytics/siteopt/

How To Get Contents from Other Websites Using jQuery?

Step 1: Create index.html and add the code below: (Change YOURDOMAIN.com)

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html><head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js" type="text/javascript"></script>
<script>
$(document).ready(function(){
$("#allh2").load("http://www.YOURDOMAIN.com/loader.php div",{want2Read:'http://en.wikipedia.org/wiki/Steve_jobs'},function(){
//Write your additional jQuery script below. For instance:
$("div").attr("class","mw-content-ltr");
});
});
</script>
 </head> <body>
<h1>Wow, this stuff is need</h1>
<p class="optionalcontent">All headers from <a href="http://www.want2read.com/">want2read</a>, I learned this from <a href="http://www.sitegrind.nl/">Sitegrind</a></p>
<div id="allh2"> </div>

</body> </html>

Step 2 : Create loader.php

<?php
extract($_POST);
$str = file_get_contents($want2Read);
echo $str;
?>

How To Get WordPress Template File in Theme?

Calls sidebar-page.php:

<?php get_sidebar('page'); ?>

How To Remove Menu in Thesis Theme?

On custom-functions.php, add the code snippets below:

// remove menu
remove_action('thesis_hook_before_header', 'thesis_nav_menu');