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
html, body, div, span, applet, object, iframe, | |
h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
a, abbr, acronym, address, big, cite, code, | |
del, dfn, em, img, ins, kbd, q, s, samp, | |
small, strike, strong, sub, sup, tt, var, | |
b, u, i, center, | |
dl, dt, dd, ol, ul, li, | |
fieldset, form, label, legend, | |
table, caption, tbody, tfoot, thead, tr, th, td, | |
article, aside, canvas, details, embed, |
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
/* | |
Theme Name: Buring Desire | |
Theme URI: webdevelopment24.net/wordpress/theme | |
Description: This theme for blogin and ecommerce | |
Author: webhasan(Hasanuzzaman Shozib) | |
Author URI: http://webdevelopment24.net/about-us | |
Version: 1.0 | |
Tags: responsive, blog, pixel prefect, white, theme options, right widget, two menu, post formate etc. | |
License: |
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
<!-- Hop Post Area--> | |
<div class="hot_post"> | |
<header> | |
<ul> | |
<li><img src="<?php echo get_template_directory_uri(); ?>/images/hot_post.png" alt="hot post"></li> | |
<li><h1>Hot Posts</h1></li> | |
</ul> | |
</header> |
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
window.onload = function(){ | |
var elements = document.getElementsByClassName("each-word") | |
for (var i=0; i<elements.length; i++){ | |
elements[i].innerHTML = elements[i].innerHTML.replace(/\b([a-z])([a-z]+)?\b/gim, "<span class='first-letter'>$1</span>$2") | |
} | |
} | |
<style> | |
.first-letter { |
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
<script> | |
$('#main-menu li').hover(function(){ | |
$(this).children('ul').stop().slideToggle(250); | |
}); | |
</script> |
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
.comments-area { | |
margin-top: 3em; | |
} | |
.comments-area > h3 { | |
font-size: 18px; | |
} | |
#comments { | |
font-size: 16px; | |
color:#333; | |
} |
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
/* calendar widget */ | |
.widget_calendar {float: left;} | |
#wp-calendar {width: 100%; max-width: 100%;} | |
#wp-calendar caption { text-align: right; color: #333; font-size: 12px; margin-bottom: 15px; } | |
#wp-calendar thead { font-size: 10px; } | |
#wp-calendar thead th { padding-bottom: 10px; } | |
#wp-calendar tbody { color: #aaa; max-width: 100%;} | |
#wp-calendar tbody td a {color:#3d99ca;} | |
#wp-calendar tbody td { background: #f5f5f5; border: 1px solid #fff; text-align: center; padding:8px;} | |
#wp-calendar tbody td:hover { background: #fff; } |
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
<?php $orig_post = $post; | |
global $post; | |
$categories = get_the_category($post->ID); | |
if($categories){ | |
$categori_id = array(); | |
foreach ($categories as $category) { |
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
Use options Tree as theme mood: | |
<?php | |
add_filter( 'ot_show_pages', '__return_false' ); | |
add_filter( 'ot_show_new_layout', '__return_false' ); | |
add_filter( 'ot_theme_mode', '__return_true' ); |