radhika
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Patchwork] Possible to change the patchwork background?hii
search /* .style-maude #masthead */ in style.css template and change background-image property with your own..style-maude #masthead {
background-image:url(images/patchwork.jpg);
border-bottom: 10px solid #46433a;
}Forum: Themes and Templates
In reply to: Header change for Mystique themeif you want to change the header of your site then you have to edit the header in style.css of your theme. Search ‘#site-title’ in style.css template and add as:
#site-title{ background:transparent url(images/header.png) no-repeat center top;// edit here image path height: 200px; }
Forum: Themes and Templates
In reply to: How can i controll the page width?firstly you have to need to remove the menu code from ur template which added by you.
Copy this code where you have remove your code of the template:<div class="nav"> <ul> <li><a href="">Home</a></li> <li><a href="">News</a></li> <li><a href="">Contact</a></li> <li><a href="">About</a></li> </ul> </div>
And then add this <style> in the<head> of the template:
<style> .nav{ width:800px; } ul { list-style-type:none; margin:0; padding:0; overflow:hidden; } li { float:left; } a:link,a:visited { display:block; width:120px; font-weight:bold; color:#FFFFFF; background-color:#98bf21; text-align:center; padding:4px; text-decoration:none; text-transform:uppercase; } a:hover,a:active { background-color:#7A991A; } </style>
Forum: Themes and Templates
In reply to: Having trouble targetingyou have to some changes in your theme template where you add the twitter scripting:
<script type="text/javascript"> new TWTR.Widget( { rrp : 5, theme : { shell : { background : "red", //change the background color & color according your need color : "#ab7373" }, tweets : { background : "green", //change the background color & color according your need color : "#d41616", links : "#f9b3ee" } }, width : "auto", height : 200, features : { live : true, scrollbar : false, timestamp : false, hashtags : false, avatars : true, loop : false, behaviour : "all" }, version : 2, interval : 6000, type : "profile", title : null, subject : null, search : "@marenhogan" } ).render().setUser('@jasonlauritsen').start(); </script>
[Moderator Note: Please post code or markup snippets between backticks or use the code button. As it stands, your code may now have been permanently damaged/corrupted by the forum’s parser.]
Forum: Themes and Templates
In reply to: [zeeStyle] [Theme: zeeStyle] logo on the headerFor logo goes in your theme:
wp-admin> appearance> theme option put the image path or url and save it.to avoid the big picture goes in :
wp-admin> appearance> header and click on the “Restore original Header Image” and save it.Forum: Themes and Templates
In reply to: Color WayHave you the footer template in your theme.
Forum: Themes and Templates
In reply to: highlighting parent menu itemyou have to edit in style.css of your theme. first you search /* Singular content styles for Posts and Pages */ in your style.css and edit in font-size:
.singular .entry-title{ font-size: 40px !important; }
Forum: Themes and Templates
In reply to: Wu Wei theme – #footer-right move to right hand side of page.you will have do some changes in your style.css. you have comment the ‘/*Sidebar + Widgets *’ in style.css:
/*#footer-widgets {width:60em; border-top:1px solid #d1d9dc; margin:0 0 1em 0; overflow: hidden; padding:1em 0 0 0;}
#footer-widgets .widget-area { font-size:1.167em; line-height:1.5em; margin-right:1.429em; width: 15.713em; list-style: none; overflow: hidden;}
#footer-widgets .widget li {list-style: none;}
#footer-widgets li .widgettitle {font-size:1.714em; color:#959ea1; padding:0.333em 0;}table#flickr_badge_uber_wrapper {margin: 0;}
table#flickr_badge_uber_wrapper tr td {border: none; padding: 0;}
#flickr_badge_wrapper {border: none !important;}
table#flickr_badge_uber_wrapper img {max-width: 15.713em; margin: 0;}.widget_rss img,
.widget_authors img {margin: 0;}*/And the code in /*footer*/ in style.css:
#footer-widgets ul li{ width:220px; float:left; list-style: none; } #footer-widgets li:last-child { float: right; }
Forum: Themes and Templates
In reply to: Wu Wei theme – #footer-right move to right hand side of page.@codingpet.com
Try to add overflow: hidden in #footer-rightin style.css.
Forum: Fixing WordPress
In reply to: Change phone number and email addresshii
Search the ‘#email’ in style.css in your theme and can reduce the ‘width: 200px;’ and ‘padding-left: 71px;‘.Forum: Fixing WordPress
In reply to: Change phone number and email addressyou have to edit in your header.php of your theme. Search the ‘<div id=”contact_details”>’ in header.php and edit the email & phone number.
please provide the link of your site.
Forum: Themes and Templates
In reply to: highlighting parent menu itemPlease provide the link of your site.
Forum: Themes and Templates
In reply to: Header image in twenty elevenAre you change the ‘twentyeleven header image width and height’ in function.php in your theme.
Forum: Themes and Templates
In reply to: Creativix menu barAccording your theme WP-Creativix, you have to remove this code in index.php file and this code add on your page where you want to see the “Recent Articles”.
<?php global $post; if(!empty($cxOptions["featured_sort"])) { $feat_sort = $cxOptions["featured_sort"]; } else { $feat_sort = "date"; } if(!empty($cxOptions["featured_order"])) { $feat_order = $cxOptions["featured_order"]; } else { $feat_order = "DESC"; } $args = array( 'meta_key' => 'feat_front', 'meta_value'=> '1', 'suppress_filters' => 0, 'post_type' => array('post', 'page'), 'post_status' => 'publish', 'numberposts' => 2, 'orderby' => $feat_sort, 'order' => $feat_order); $myposts = get_posts( $args ); if(!$myposts) { $args = array('suppress_filters' => 0, 'post_type' => array('post'), 'post_status' => 'publish', 'numberposts' => 2, 'orderby' => $feat_sort, 'order' => $feat_order); $myposts = get_posts( $args ); } foreach( $myposts as $post ) : setup_postdata($post); $thumb = wpcx_get_wp_generated_thumb("feat_thumb"); ?> <div class="feat-post" id="feat-post-<?php the_ID();?>"> <h2><a href="<?php the_permalink();?>" title="<?php the_title();?>"><?php the_title();?></a></h2> <h3>Published <?php the_time(get_option('date_format')); ?> at <?php the_time(get_option('time_format'));?> - <?php comments_number('No Comments','1 Comment','% Comments'); ?></h3> <?php the_excerpt();?> <a href="<?php the_permalink();?>"><?php if($thumb) {?><img src="<?php echo $thumb;?>" alt="" /><?php } ?></a> </div> <?php endforeach; ?>
If u want to upload background image then the image should be large(i.e 1200*1000).
option should be:-
Position: left,
Repeat: no-repeat,
Attachment: scroll