radhika
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [TwentyEleven] Page content inside sidebaryou have to add this code in sidebar.php of your theme.
<?php $page_id = 2; // edit here the id of the page $page_data = get_page( $page_id ); echo '<h3>'. $page_data->post_title .'</h3>'; echo apply_filters('the_excerpt', $page_data->post_content); ?>
[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: Change Link Colorok, you put this code in your style.css of your theme.
.meta a:hover{
color: #565656 !important; <– here change color
}Forum: Themes and Templates
In reply to: Trouble unlinking uploaded background image from new pages@km2100
you can use this plugin for upload the background images for each page. Follow this link https://www.ads-software.com/extend/plugins/background-manager/faq/Forum: Themes and Templates
In reply to: [TwentyEleven] Page content inside sidebar@apoklyps3
yes, it is passible to get the content of the a page. you have to follow this link https://www.ads-software.com/extend/plugins/page-in-widget/installation/Forum: Themes and Templates
In reply to: Change Link Coloryou have to go in your wp-admin:
wp-admin> Appearance> theme options >edit the color in Second Link Color.@ecopress
you can change the background of your site with the help of style.css of your theme.
search /*body*/ in style.css of your theme & edit the background:body {
color: #666;
padding-bottom: 20px;
background:#74ccf2 url(images path) center top repeat-x; <– change the background
}Forum: Themes and Templates
In reply to: suffusion font colorsyou have to go in your theme & and edit the font color in style.css template. Search /*#nav a, #nav a:visited*/ in style.css template & color edit:
#nav a,
#nav a:visited {
padding: 8px 8px 5px 8px;
text-decoration: none;
display: inline-block;
color: #925f2c !important; <– change here
}Forum: Plugins
In reply to: [WP-Cycle] [Plugin: WP-Cycle] Resize background?yes, you have to edit in wp-cycle.php file of your wp-content plugin.
wordpress/wp-content/plugins/wp-cycle/wp-cycle.php & edit the w*h in this code:$wp_cycle_defaults = apply_filters(‘wp_cycle_defaults’, array(
‘rotate’ => 1,
‘effect’ => ‘fade’,
‘delay’ => 3,
‘duration’ => 1,
‘img_width’ => 300,<– change here width
‘img_height’ => 200,<– change here height
‘div’ => ‘rotator’
));And edit code in style.css file of your theme:
#rotator{
border:20px solid #000;<– change here border color
}Forum: Fixing WordPress
In reply to: How Do I Reduce Height of Banner Image?@agfreesafety
If you want to reduce the banner height then add this line in function.php file of your theme.define( ‘HEADER_IMAGE_HEIGHT’, apply_filters( ‘twentyeleven_header_image_height’, 300 ) );
Forum: Themes and Templates
In reply to: Change the page Title color in twenty elevenhii change color in style.css:
.entry-title,
.entry-title a {
color: red; <– change here
text-decoration: none;
}Forum: Themes and Templates
In reply to: Header change for Mystique theme@slaviksoul
you can do one thing that you go in wp-admin.
click on media > add new> select your image> save.
Edit the upload image of your media library & copy the file url & goes in appearance> editor> style.css & search ‘#site-title’ & paste your image url :#site-title{ background:transparent url(images/header.png) no-repeat center top;// edit url of media library image height: 200px; }
Forum: Themes and Templates
In reply to: [Patchwork] Possible to change the patchwork background?@loveateverybite
you can do one thing that you go in wp-admin.
click on media >add new> select your image> save.
Edit the upload image of your media library & copy the file url & goes in appearance> editor> style.css & search ‘.style-maude #masthead’ & paste your image url..style-maude #masthead { background-image:url(image.png); // paste the image url border-bottom: 10px solid #46433a; }
Forum: Themes and Templates
In reply to: [Patchwork] Possible to change the patchwork background?where you upload the files of your theme on your server.
Forum: Themes and Templates
In reply to: [Patchwork] Possible to change the patchwork background?@loveateverybite
Firstly copy your image from the desktop. And open your theme folder, goes into patchwork folder, open images folder and paste the image in images folder..style-maude #masthead { background-image:url(images/image.jpg); border-bottom: 10px solid #46433a; }
Forum: Themes and Templates
In reply to: [Patchwork] Possible to change the patchwork background?hey save your image in ‘wp-content> theme >patchwork> images folder ‘.