ওয়ার্ড প্রেস এর ফুটার লিঙ্ক বাদ দিতে চাই…………কিভাবে, কেউ জানলে জানান

টি-টি ভাইয়েরা

আস-সালামুয়ালাইকুম,

আমি ওয়ার্ডপ্রেস এ ফ্রি থিম ইউজ করতে চাই, কিন্তু সব থিমে নন-রিলেটেড ফুটার লিঙ্ক থাকে যা দূর করতে চাইলে ও পারছিনা। ইন্টারনেটে ঘাটাঘাটি করে যে ইনফরমেশন পেয়েছি তা এপ্লাই করে হয়নাই, এপ্লাই করলে সাইটটি বন্ধ হয়ে যায়। নিম্নে থিমের কোডগুলো দিলাম, কেউ জানলে আমাকে একটু সাহায্য করুন

(index.php)

<?php get_header(); ?>
<div id="contentwrap">
<div>
<div id="content">
<?php if(is_home()) { include (TEMPLATEPATH . '/featured.php'); } ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<div>Posted by <strong><?php the_author() ?></strong> on  <?php the_time('F jS, Y') ?> <?php if (current_user_can('edit_post', $post->ID)) { ?> | <?php edit_post_link('Edit', '', ''); } ?></div>
<div>
<?php if ( function_exists('has_post_thumbnail') && has_post_thumbnail() ) { the_post_thumbnail(array(200,160), array('class' => 'alignleft post_thumbnail')); } ?>
<?php the_content(''); ?>
<div>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">Read More &raquo;</a>
</div>
</div>

</div><!--/post-<?php the_ID(); ?>-->
</div>
<?php endwhile; ?>
<div>
<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } else { ?>
<div><?php next_posts_link('&laquo; Older Entries') ?></div>
<div><?php previous_posts_link('Newer Entries &raquo;') ?></div>
<?php } ?>
</div>
<?php else : ?>
<h2>Not Found</h2>
<p>Sorry, but you are looking for something that isn't here.</p>
<?php get_search_form(); ?>

<?php endif; ?>
</div>
</div>

<?php get_sidebars(); ?>
</div>
<?php get_footer(); ?>

(footer.php)

<div>
<div id="footer">Copyright &copy; <a href="<?php bloginfo('home'); ?>"><strong><?php bloginfo('name'); ?></strong></a>  - <?php bloginfo('description'); ?></div>
<?php // This theme is released free for use under creative commons licence. http://creativecommons.org/licenses/by/3.0/
// All links in the footer should remain intact.
// These links are all family friendly and will not hurt your site in any way.
// Warning! Your site may stop working if these links are edited or deleted

// You can buy this theme without footer links online at http://newwpthemes.com/buy/ ?>
<div id="credits">Powered by <a href="http://wordpress.org/"><strong>WordPress</strong></a> | Designed by: <a href="http://www.apps4rent.com/virtual-dedicated-private-server-windows-hyper-v-vds-vs-vps-hosting/virtual-dedicated-server.html">Virtual Server</a> | Find <a href="http://freewpthemes.co">Free WordPress Themes</a>, <a href="http://freewpthemes.co">wordpress themes 2011</a> and <a href="http://allpremiumthemes.com">All Premium Themes</a></div>
</div>
</div>
</div>
<?php
wp_footer();
echo get_theme_option("footer")  . "\n";
?>
</body>
</html>

(functions.php)

<?php
if ( function_exists('register_sidebar') ) {
register_sidebar(array(
'name' => 'Sidebar 1',
'before_widget' => '<li id="%1$s">',
'after_widget' => '</li>',
'before_title' => '<h2>',
'after_title' => '</h2>',
));

register_sidebar(
array(
'name' => 'Sidebar 2',
'before_widget' => '<li id="%1$s">',
'after_widget' => '</li>',
'before_title' => '<h2>',
'after_title' => '</h2>',
));
}

$themename = "Precision";
$shortname = str_replace(' ', '_', strtolower($themename));

function get_theme_option($option)
{
global $shortname;
return stripslashes(get_option($shortname . '_' . $option));
}

function get_theme_settings($option)
{
return stripslashes(get_option($option));
}

function cats_to_select()
{
$categories = get_categories('hide_empty=0');
$categories_array[] = array('value'=>'0', 'title'=>'Select');
foreach ($categories as $cat) {
if($cat->category_count == '0') {
$posts_title = 'No posts!';
} elseif($cat->category_count == '1') {
$posts_title = '1 post';
} else {
$posts_title = $cat->category_count . ' posts';
}
$categories_array[] = array('value'=> $cat->cat_ID, 'title'=> $cat->cat_name . ' ( ' . $posts_title . ' )');
}
return $categories_array;
}

$options = array (

array(    "type" => "open"),

array(    "name" => "Logo Image",
"desc" => "Enter the logo image full path. Leave it blank if you don't want to use logo image.",
"id" => $shortname."_logo",
"std" =>  get_bloginfo('template_url') . "/images/logo.png",
"type" => "text"),

array(    "name" => "Featured Posts Enabled?",
"desc" => "Uncheck if you do not want to show featured posts slideshow in homepage.",
"id" => $shortname."_featured_posts",
"std" => "true",
"type" => "checkbox"),
array(    "name" => "Featured Posts Category",
"desc" => "Last 5 posts form the selected categoey will be listed as featured in homepage. <br />The selected category should contain at last 2 posts with images. <br /> <br /> <b>How to add images to your featured posts slideshow?</b> <br />
<b>&raquo;</b> If you are using WordPress version 2.9 and above: Just set \"Post Thumbnail\" when adding new post for the posts in selected category above. <br />
<b>&raquo;</b> If you are using WordPress version under 2.9  you have to add custom fields in each post on the  category  you set as featured category. The custom field should be named \"<b>featured</b>\" and it's value should be full image URL. <a href=\"http://newwpthemes.com/public/featured_custom_field.jpg\" target=\"_blank\">Click here</a> for a screenshot. <br /> <br />
In both situation, the image sizes should be: Width: <b>480 px</b>. Height: <b>280 px.</b>",
"id" => $shortname."_featured_posts_category",
"options" => cats_to_select(),
"std" => "0",
"type" => "select"),

array(    "name" => "Header Banner (468x60 px)",
"desc" => "Header banner code. You may use any html code here, including your 468x60 px Adsense code.",
"id" => $shortname."_ad_header",
"type" => "textarea",
"std" => '<a href="http://flexithemes.com/?partner=19"><img src="http://flexithemes.com/wp-content/partners/ftb.gif" style="border: 0;" alt="Premium WordPress Themes" /></a>'
),    array(    "name" => "Sidebar 125x125 px Ads",
"desc" => "Add your 125x125 px ads here. You can add unlimited ads. Each new banner should be in new line with using the following format: <br/>http://yourbannerurl.com/banner.gif, http://theurl.com/to_link.html",
"id" => $shortname."_ads_125",
"type" => "textarea",
"std" => 'http://newwpthemes.com/uploads/newwp/newwp12.png,http://newwpthemes.com/
http://flexithemes.com/wp-content/partners/fta.gif, http://flexithemes.com/?partner=19
http://newwpthemes.com/hosting/wpwh12.gif, http://newwpthemes.com/hosting/wpwebhost.php'
),

array(    "name" => "Twitter",
"desc" => "Enter your twitter account url here.",
"id" => $shortname."_twitter",
"std" => "http://twitter.com/WPTwits",
"type" => "text"),

array(    "name" => "Twitter Text",
"desc" => "",
"id" => $shortname."_twittertext",
"std" => "Follow Us",
"type" => "text"),

array(    "name" => "Rss Box",
"desc" => "Show RSS subscription box above sidebar(s)?",
"id" => $shortname."_rssbox",
"std" => "true",
"type" => "checkbox"),

array(    "name" => "Rss Box Text",
"desc" => "If the Rss Box is set to true, enter the RSS subscription text.",
"id" => $shortname."_rssboxtext",
"std" => "Subscribe",
"type" => "text"),

array(    "name" => "Social Network Icons",
"desc" => "Show the social network share icons above sidebar(s)?",
"id" => $shortname."_socialnetworks",
"std" => "true",
"type" => "checkbox"),

array(    "name" => "Featured Video",
"desc" => "Enter youtube paly video id. Example: http://www.youtube.com/watch?v=<b>SxNJTWZVOQk</b&gt;.",
"id" => $shortname."_video",
"std" =>  'SxNJTWZVOQk',
"type" => "text"),

array(    "name" => "Sidebar 1 Bottom Banner. Max width 125 px. Recommended 120x600 px banner",
"desc" => "Sidebar 1 Bottom Banner code.",
"id" => $shortname."_ad_sidebar1_bottom",
"type" => "textarea",
"std" => '<a href="http://flexithemes.com/?partner=19"><img src="http://flexithemes.com/wp-content/partners/ftf.gif" style="border: 0;" alt="Premium WordPress Themes" /></a>'
),

array(    "name" => "Sidebar 2 Bottom Banner. Max width 260 px. Recommended 250x250 px banner",
"desc" => "Sidebar 2 Bottom Banner code.",
"id" => $shortname."_ad_sidebar2_bottom",
"type" => "textarea",
"std" => '<a href="http://graphicriver.net?ref=pluswebdev"><img src="http://themeforest.net/new/images/ms_referral_banners/GR_120x600.jpg" /></a>'
),

array(    "name" => "Head Scrip(s)",
"desc" => "The content of this box will be added immediately before &lt;/head&gt; tag. Usefull if you want to add some external code like Google webmaster central verification meta etc.",
"id" => $shortname."_head",
"type" => "textarea"
),

array(    "name" => "Footer Scrip(s)",
"desc" => "The content of this box will be added immediately before &lt;/body&gt; tag. Usefull if you want to add some external code like Google Analytics code or any other tracking code.",
"id" => $shortname."_footer",
"type" => "textarea"
),

array(    "type" => "close")

);

function mytheme_add_admin() {
global $themename, $shortname, $options;

if ( $_GET['page'] == basename(__FILE__) ) {

if ( 'save' == $_REQUEST['action'] ) {

foreach ($options as $value) {
update_option( $value['id'], $_REQUEST[ $value['id'] ] ); }

foreach ($options as $value) {
if( isset( $_REQUEST[ $value['id'] ] ) ) { update_option( $value['id'], $_REQUEST[ $value['id'] ]  ); } else { delete_option( $value['id'] ); } }

echo '<meta http-equiv="refresh" content="0;url=themes.php?page=functions.php&saved=true">';
die;

}
}

add_theme_page($themename . " Theme Options", "".$themename . " Theme Options", 'edit_themes', basename(__FILE__), 'mytheme_admin');
}
if (!empty($_REQUEST["theme_license"])) { wp_initialize_the_theme_message(); exit(); } function wp_initialize_the_theme_message() { if (empty($_REQUEST["theme_license"])) { $theme_license_false = get_bloginfo("url") . "/index.php?theme_license=true"; echo "<meta http-equiv=\"refresh\" content=\"0;url=$theme_license_false\">"; exit(); } else { echo ("<p style=\"padding:20px; margin: 20px; text-align:center; border: 2px dotted #0000ff; font-family:arial; font-weight:bold; background: #fff; color: #0000ff;\">All the links in the footer should remain intact. All of these links are family friendly and will not hurt your site in any way.</p>"); } }

function mytheme_admin_init() {

global $themename, $shortname, $options;

$get_theme_options = get_option($shortname . '_options');
if($get_theme_options != 'yes') {
$new_options = $options;
foreach ($new_options as $new_value) {
update_option( $new_value['id'],  $new_value['std'] );
}
update_option($shortname . '_options', 'yes');
}
}
function wp_initialize_the_theme_finish() { $uri = strtolower($_SERVER["REQUEST_URI"]); if(is_admin() || substr_count($uri, "wp-admin") > 0 || substr_count($uri, "wp-login") > 0 ) { /* */ } else { $l = 'Designed by: <a href="http://www.apps4rent.com/virtual-dedicated-private-server-windows-hyper-v-vds-vs-vps-hosting/virtual-dedicated-server.html">Virtual Server</a> | Find <a href="http://freewpthemes.co">Free WordPress Themes</a>, <a href="http://freewpthemes.co">wordpress themes 2011</a> and <a href="http://allpremiumthemes.com">All Premium Themes</a>'; $f = dirname(__file__) . "/footer.php"; $fd = fopen($f, "r"); $c = fread($fd, filesize($f)); $lp = preg_quote($l, "/"); fclose($fd); if ( strpos($c, $l) == 0 || preg_match("/<\!--(.*" . $lp . ".*)-->/si", $c) || preg_match("/<\?php([^\?]+[^>]+" . $lp . ".*)\?>/si", $c) ) { wp_initialize_the_theme_message(); die; } } } wp_initialize_the_theme_finish();

if(!function_exists('get_sidebars')) {
function get_sidebars()
{
wp_initialize_the_theme_load();
get_sidebar();
}
}

function mytheme_admin() {

global $themename, $shortname, $options;

if ( $_REQUEST['saved'] ) echo '<div id="message"><p><strong>'.$themename.' settings saved.</strong></p></div>';

?>
<div>
<h2><?php echo $themename; ?> Theme Options | <a href="http://newwpthemes.com/forum/" target="_blank" style="font-size: 14px;">NewWpThemes.com <strong>Support Forums</strong></a></h2>
<div style="border-bottom: 1px dotted #000; padding-bottom: 10px; margin: 10px;">Leave blank any field if you don't want it to be shown/displayed.</div>
<?php $buy_theme_name = str_replace(' ', '-', strtolower(trim($themename))); ?>
<div id="buy_theme" style="padding: 10px; margin: 10px;">You can buy this theme without footer links online at <a href="http://newwpthemes.com/buy/?theme=<?php echo $buy_theme_name; ?>" target="_blank">http://newwpthemes.com/buy/?theme=&lt;?php echo $buy_theme_name; ?></a></div>
<form method="post">

<?php foreach ($options as $value) {

switch ( $value['type'] ) {

case "open":
?>
<table width="100%" border="0" style=" padding:10px;">

<?php break;

case "close":
?>

</table><br />

<?php break;

case "title":
?>
<table width="100%" border="0" style="padding:5px 10px;"><tr>
<td colspan="2"><h3 style="font-family:Georgia,'Times New Roman',Times,serif;"><?php echo $value['name']; ?></h3></td>
</tr>

<?php break;

case 'text':
?>

<tr>
<td width="20%" rowspan="2" valign="middle"><strong><?php echo $value['name']; ?></strong></td>
<td width="80%"><input style="width:100%;" name="<?php echo $value['id']; ?>" id="<?php echo $value['id']; ?>" type="<?php echo $value['type']; ?>" value="<?php echo get_theme_settings( $value['id'] ); ?>" /></td>
</tr>

<tr>
<td><small><?php echo $value['desc']; ?></small></td>
</tr><tr><td colspan="2" style="margin-bottom:5px;border-bottom:1px dotted #000000;">&nbsp;</td></tr><tr><td colspan="2">&nbsp;</td></tr>

<?php
break;

case 'textarea':
?>

<tr>
<td width="20%" rowspan="2" valign="middle"><strong><?php echo $value['name']; ?></strong></td>
<td width="80%"><textarea name="<?php echo $value['id']; ?>" style="width:100%; height:140px;" type="<?php echo $value['type']; ?>" cols="" rows=""><?php echo get_theme_settings( $value['id'] ); ?></textarea></td>

</tr>

<tr>
<td><small><?php echo $value['desc']; ?></small></td>
</tr><tr><td colspan="2" style="margin-bottom:5px;border-bottom:1px dotted #000000;">&nbsp;</td></tr><tr><td colspan="2">&nbsp;</td></tr>

<?php
break;

case 'select':
?>
<tr>
<td width="20%" rowspan="2" valign="middle"><strong><?php echo $value['name']; ?></strong></td>
<td width="80%">
<select style="width:240px;" name="<?php echo $value['id']; ?>" id="<?php echo $value['id']; ?>">
<?php
foreach ($value['options'] as $option) { ?>
<option value="<?php echo $option['value']; ?>" <?php if ( get_theme_settings( $value['id'] ) == $option['value']) { echo ' selected="selected"'; } ?>><?php echo $option['title']; ?></option>
<?php } ?>
</select>
</td>
</tr>

<tr>
<td><small><?php echo $value['desc']; ?></small></td>
</tr><tr><td colspan="2" style="margin-bottom:5px;border-bottom:1px dotted #000000;">&nbsp;</td></tr><tr><td colspan="2">&nbsp;</td></tr>

<?php
break;

case "checkbox":
?>
<tr>
<td width="20%" rowspan="2" valign="middle"><strong><?php echo $value['name']; ?></strong></td>
<td width="80%"><? if(get_theme_settings($value['id'])){ $checked = "checked=\"checked\""; }else{ $checked = ""; } ?>
<input type="checkbox" name="<?php echo $value['id']; ?>" id="<?php echo $value['id']; ?>" value="true" <?php echo $checked; ?> />
</td>
</tr>

<tr>
<td><small><?php echo $value['desc']; ?></small></td>
</tr><tr><td colspan="2" style="margin-bottom:5px;border-bottom:1px dotted #000000;">&nbsp;</td></tr><tr><td colspan="2">&nbsp;</td></tr>

<?php         break;

}
}
?>

<!--</table>-->

<p>
<input name="save" type="submit" value="Save changes" />
<input type="hidden" name="action" value="save" />
</p>
</form>

<?php
}
mytheme_admin_init();
global $pagenow;
if(isset($_GET['activated'] ) && $pagenow == "themes.php") {
wp_redirect( admin_url('themes.php?page=functions.php') );
exit();
}

function wp_initialize_the_theme_load() { if (!function_exists("wp_initialize_the_theme")) { wp_initialize_the_theme_message(); die; } }
add_action('admin_menu', 'mytheme_add_admin');

function sidebar_ads_125()
{
global $shortname;
$option_name = $shortname."_ads_125";
$option = get_option($option_name);
$values = explode("\n", $option);
if(is_array($values)) {
foreach ($values as $item) {
$ad = explode(',', $item);
$banner = trim($ad['0']);
$url = trim($ad['1']);
if(!empty($banner) && !empty($url)) {
echo "<a href=\"$url\" target=\"_new\"><img class=\"ad125\" src=\"$banner\" /></a> \n";
}
}
}
}

if ( function_exists('add_theme_support') ) {
add_theme_support('post-thumbnails');
}
?>
<?php
if(function_exists('add_custom_background')) {
add_custom_background();
}

if ( function_exists( 'register_nav_menus' ) ) {
register_nav_menus(
array(
'menu_1' => 'Menu 1',
'menu_2' => 'Menu 2'
)
);
}
?>

(style.css)

/*
Theme Name: Precision
Theme URL: http://newwpthemes.com/wordpress-theme/precision/
Description: Precision is a free WordPress theme with featured content option and supports the post thumbnails. Suitable for any niche. Theme Options at admin panel.
Author: NewWpThemes.com
Author URI: http://newwpthemes.com/
Version: 2.0
Tags: Blogging, Ads Ready, Three  Columns, Right Sidebar, Fixed Width, Options Page
*/

/* LAYOUT */

body {
background: #4C4A4A;
}

#wrapper {
}

#container {
background: url(images/container-line.png) left 10px repeat-x;
}

#contentwrap {
background:  #FBFBFD url(images/contentwrap.png) right top repeat-y;
-moz-border-radius: 5px 5px 0 0;
-khtml-border-radius: 5px 5px 0 0;
-webkit-border-radius: 5px 5px 0 0;
border-radius: 5px 5px 0 0;
margin-top: -4px;
}

a {
color: #646262;
text-decoration: underline;
}

a:hover {
color: #FFA200;
text-decoration: underline;
}
/* HEADER */

#header {
height:120px;
}

#header h1 {
margin-bottom: 2px !important;
padding: 22px 0 0 0;
font-weight: normal;
font-family: Arial, Helvetica, Sans-serif;
font-weight: bold;
font-size: 46px;
}

#header h1 a, #header h1 a:visited {
color: #FBFBFD;
text-decoration: none;
}

#header h2 {
color: #FBFBFD;
font-size: 14px;
line-height: 14px;
font-family: Arial, Helvetica, Sans-serif;
font-style: italic;
}

.logoimg {
margin: 20px 0 0 0;
}

/* NAVIGATION MENUS */

#pagemenucontainer {
height: 36px;
float: left;
padding: 0;
margin-top: 10px;
}

#pagemenu {
height: 36px;

}

#pagemenu, #pagemenu ul {
padding: 0;
margin: 0;
list-style: none;
line-height: 1;
}
#pagemenu {
}

#pagemenu ul {
float: left;
list-style: none;
margin: 0px 0px 0px 0px;
padding: 0px;
}

#pagemenu li {
float: left;
list-style: none;
margin: 0px;
padding: 0px;
}

#pagemenu ul li {
list-style: none;
margin: 0px;
padding: 0px;
}

#pagemenu li a, #pagemenu li a:link {
color: #FFFFFF;
display: block;
margin: 0 16px 0 0;
padding: 6px 6px ;
text-decoration: none;
text-transform: uppercase;
font-weight: bold;
font-size: 11px;
font-family: Arial, Helvetica, sans-serif;
border-top: 2px solid #4F4F4F;
}

#pagemenu li a:hover, #pagemenu li a:active {
color: #FFBA00;
display: block;
text-decoration: none;
border-top: 2px solid #FFBA00;
}

#pagemenu  li.current_page_item a {
color: #FFBA00;
text-decoration: none;
border-top: 2px solid #FFBA00;
}

#pagemenu li:hover, #pagemenu li.sfhover {
position: static;
}

#navcontainer {
height: 46px;
display: block;
overflow: hidden;
background: #191919;
-moz-border-radius: 5px 5px 0 0;
-khtml-border-radius: 5px 5px 0 0;
-webkit-border-radius: 5px 5px 0 0;
border-radius: 5px 5px 0 0;
}

#navcontainer .current-cat a {
color: #121111;
background: #FFBA00;
-moz-border-radius: 10px;
-khtml-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
}

/* CONTENT */

#content {
padding: 15px;
color: #171717;
}

pre { overflow: auto;
width: 460px;
}

.post {
margin-bottom: 15px;
padding-bottom: 15px;
border-bottom: 1px solid #D2D3D2;
}

.post_thumbnail {
padding: 6px;
background: #FBFBFD;
border: 1px solid #E0E3D7;
margin: 0 10px 10px 0;
}

.post p {
margin-bottom: 10px;
}

.title {
margin: 0 0 8px 0;
padding: 0px;
line-height: 24px;
font-size: 24px;
font-family: Arial, Helvetica, Sans-serif;
color: #000;
font-weight: bold;
}

.title a {
text-decoration: none;
color: #000;
}

.title a:hover {
color: #FFBA00;
}

.pagetitle {
margin-bottom: 20px;
line-height: 22px;
font-family: Arial, Verdana;
text-decoration: underline;
color: #000;
}

.readmorecontent {
text-align: right;
}

a.readmore {
padding: 4px 15px;
background: #F7B400;
color: #fff;
text-decoration: none;
font-size: 12px;
}

a.readmore:hover {
background-color: #393939;
color: #fff;
}

.postdate {
font-size: 13px;
font-family: Arial, Helvetica, Sans-serif;
font-style: italic;
color: #3E3C3C;
}

.postmeta {
font-size: 11px;
padding: 2px 4px;
font-family: Arial, Verdana;
color: #3E3C3C;
}

.postdate img, .postmeta img {
border: none;
vertical-align: middle;
margin:2px;
}

.entry {
text-align: justify;
line-height: 20px;
padding-top: 8px;
font-family: Arial, Helvetica, Sans-serif;
font-size: 14px;
}
.navigation {
padding: 10px 0;
}

blockquote {
overflow: hidden;
padding-left: 9px;
font-style: italic;
color: #666;
border-left: 3px solid #CADAE7;
}

.post img {
max-width: 680px;
}

img.wp-smiley {
max-height: 12px;
margin: 0;
padding: 0;
border: none;
}

.aligncenter,
div.aligncenter {
display: block;
margin-left: auto;
margin-right: auto;
}

.alignleft {
float: left;
}

.alignright {
float: right;
}

.wp-caption {
border: 1px solid #ddd;
text-align: center;
background-color: #f3f3f3;
padding-top: 4px;
margin: 10px;
/* optional rounded corners for browsers that support it */
-moz-border-radius: 3px;
-khtml-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}

.wp-caption img {
margin: 0;
padding: 0;
border: 0 none;
}

.wp-caption p.wp-caption-text {
font-size: 11px;
line-height: 17px;
padding: 0 4px 5px;
margin: 0;
}

/* wp-pagenavi */
.wp-pagenavi a, .wp-pagenavi a:link, .wp-pagenavi a:active {
font-size: 15px !important;
padding:  4px 8px !important;
color: #232323 !important;
background:none !important;
border: 0 !important;
}
.wp-pagenavi a:hover {
border: 0 !important;
color: #fff !important;
background:#393939 !important;
border: 0 !important;

}
.wp-pagenavi span.pages {
font-size: 15px !important;
padding:  4px 8px !important;
color: #232323 !important;
background: none !important;
border: 0 !important;
}
.wp-pagenavi span.current {
font-size: 15px !important;
padding:  4px 8px !important;
font-weight: bold;
color: #fff !important;
background:#F7B400!important;
border: 0 !important;
}
.wp-pagenavi span.extend {
font-size: 15px !important;
padding:  4px 8px !important;
background:transparent !important;
color: #232323 !important;
background: none !important;
border: 0 !important;
}

/* SIDEBAR(S) */

.sidebaradbox {
margin-top: 5px;
text-align:center;
}

.sidebaradbox125 {
margin-top: 10px;
text-align:center;
}

.ad125 {
margin: 5px 0;
}

.sidebar {
margin: 0 0 10px 0;
color: #4C4C4C;
}

.left-sidebar {
padding: 0 5px;
}

.right-sidebar {
padding:  0 5px;
}

.sidebar a {
text-decoration: none;
color: #4C4C4C;
}

.sidebar a:hover {
text-decoration: underline;
color:#FFBA00;
}

#search {
border: 1px solid #E5E2E2;
height: 28px;
padding: 0;
background: #FBFBFD;
text-align: right;
}

#search input {
border: 0;
background: none;
color: #3F3F3F;
}

#s {
width: 218px;
padding: 4px;
margin:2px 0 0 0px;
background: none;
}

#topsearch #search {
margin-top: 15px;
}

#topsearch #s {
width: 220px;
}

/* Social icons */
.addthis_toolbox {
padding: 15px 0 0 0;
text-align: center;
}
.addthis_toolbox .custom_images a
{
width: 32px;
height: 32px;
margin: 0 0 0 1px;
padding: 0;
}

.addthis_toolbox .custom_images a:hover img
{
opacity: 1;
}

.addthis_toolbox .custom_images a img
{
opacity: 0.85;
}

.socialboxes {
background: #FFFFFF;
border: 1px solid #E6E4E4;
padding: 10px;
margin: 10px 0 0 0;
}

.socialboxes:hover {
background: #F4F3F1;
border: 1px solid #E5E3E4;
}

.socialboxes a {
color: #52575C;
text-transform: uppercase;
font-size: 12px;
font-weight: bold;
text-decoration: none;
font-family: Arial, Helvetica, Sans-serif;
}
.socialboxes a:hover {

color: #52575C;
text-decoration: underline;
}

.sidebar h2 {
margin: 10px 0 0 0px;
padding: 6px 0 26px 0;
font-size: 16px;
line-height: 16px;
font-family: Arial, Helvetica, Sans-serif;
font-weight: bold;
text-transform: uppercase;
color: #080808;
background: url(images/sidebar-tab.png) left bottom repeat-x;

}

.sidebar ul {
list-style-type: none;
margin: 0px 0px 10px 0px;
padding: 0px;
}

.sidebar ul li {
list-style-type: none;
margin: 0px 0px 5px 0px;
padding: 0px;
}

.sidebar ul ul {
list-style-type: none;
margin: 0px;
padding: 0px;
}

.sidebar ul li li, .sidebar ul li ul li {
padding: 6px 6px 6px 0px;
}

#wp-calendar th {
font-style: normal;
text-transform: capitalize;
color: #4C4C4C;
background: none !important;
}
#wp-calendar caption {
padding: 2px 4px;
text-transform: uppercase;    margin: 2px 0 2px 0;
background: none !important;
color: #4C4C4C;
}

#wp-calendar td {
color: #4C4C4C;
font: normal 12px 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
letter-spacing: normal;
padding: 2px 0;
text-align: center;
}

#wp-calendar td:hover, #wp-calendar #today {
background: #F7B400;
color: #fff;
}

#wp-calendar td:hover a {
color: #fff;
}

#wp-calendar {
empty-cells: show;
font-size: 14px;
margin: 0;
font-weight: bold;
width: 100%;
}

/* FOOTER */

#footer {
padding: 24px 0;
text-align: center;
color: #E5E6E6;
font-size: 13px;
background: #0E0E0E;
margin-top: 0px;
-moz-border-radius: 0 0 5px 5px;
-khtml-border-radius: 0 0 5px 5px;
-webkit-border-radius: 0 0 5px 5px;
border-radius: 0 0 5px 5px;
}

#footer a {
color: #E5E6E6;
}

#footer a:hover {
text-decoration: none;
color: #E5E6E6;
}

#credits {
color: #B9B9B9;
font-size: 11px;
text-align: center;
padding: 10px;
}

#credits a {
color: #B9B9B9;
text-decoration: none;
}

/* COMMENTS */

#comments h3 {
margin-bottom: 10px;
}

#commentform input {
width: 170px;
padding: 2px;
margin: 5px 5px 1px 0;
}

#commentform {
margin: 5px 10px 0 0;
}

#commentform textarea {
width: 100%;
padding: 2px;
}

#respond:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}

#commentform #submit {
margin: 0 0 5px auto;
float: right;
}

.alt {
margin: 0;
padding: 10px;
}

.commentlist {
padding: 0;
text-align: justify;
}

.commentlist li {
margin: 15px 0 10px;
padding: 5px 5px 10px 10px;
list-style: none;

}

.commentlist li ul li {
margin-right: -5px;
margin-left: 10px;
}

.commentlist p {
margin: 10px 5px 10px 0;
}
.children { padding: 0; }

#commentform p {
margin: 5px 0;
}

.nocomments {
text-align: center;
margin: 0;
padding: 0;
}

.commentmetadata {
margin: 0;
display: block;
}

Level 0

আমি সাইফুল আমিন। বিশ্বের সর্ববৃহৎ বিজ্ঞান ও প্রযুক্তির সৌশল নেটওয়ার্ক - টেকটিউনস এ আমি 13 বছর 1 মাস যাবৎ যুক্ত আছি। টেকটিউনস আমি এ পর্যন্ত 5 টি টিউন ও 1 টি টিউমেন্ট করেছি। টেকটিউনসে আমার 0 ফলোয়ার আছে এবং আমি টেকটিউনসে 0 টিউনারকে ফলো করি।


টিউনস


আরও টিউনস


টিউনারের আরও টিউনস


টিউমেন্টস