Avnish Awasthi
Forum Replies Created
-
Forum: Themes and Templates
In reply to: CSS Repeating Backgrounds?.social_share{ background: url(https://www.techteenager.net/wp-content/themes/TTN%20Advanced/images/more_repeat.png) repeat-x; height:20px; overflow:hidden; background-repeat:repeat-x; }
i think this will be fine,try it and confirm also
Forum: Themes and Templates
In reply to: Change CSS Background Image with Custom Fieldyou want to change header background image or body background image.first clear it to me
Forum: Themes and Templates
In reply to: Changing image in header barwe have to write some code for this,because header.php file is common for all page.
Forum: Themes and Templates
In reply to: Changing image in header baryou will get image bg_header_inner.jpg in images folder within theme folder.Edit this image and replace it with the same name.If you can not edit image.send me your email id. i will send you new updated image
Forum: Fixing WordPress
In reply to: Increase margins of text without effecting background imagein style.css on line 344 replace
p {
background: url(“https://www.whitsunday-getaways.com/wp-content/themes/motion/images/whitetransnew.png”) repeat scroll 0 0 transparent;
color: white;
font-family: Arial;
font-size: 1.3em;
text-shadow: 1px 1px 0 black;
}with
p {
color: white;
font-family: Arial;
font-size: 1.3em;
margin-left: 30px;
padding: 30px;
text-shadow: 1px 1px 0 black;
}and on line no.419 replace
.postcontent {
color: #FFFFFF;
font-size: 0.8em;
line-height: 1.5em;
margin: 0.8em 0 0.8em 0;
}with
.postcontent {
background: url(“https://www.whitsunday-getaways.com/wp-content/themes/motion/images/whitetransnew.png”) repeat scroll 0 0 transparent;
color: #FFFFFF;
font-size: 0.8em;
line-height: 1.5em;
margin: 0.8em 0 0.8em 0;
}Forum: Alpha/Beta/RC
In reply to: wordpress network adminbar My Sites css problemgive comment and site URL
Forum: Themes and Templates
In reply to: Why Tanzaku always forces my images to top of the posts?give me your website URL
Forum: Fixing WordPress
In reply to: How to add JPEG image in copyright sectionput this image tag where you want to add image
<img src=”<?php echo bloginfo(‘url’).’/wp-content/themes/DigitalGallery-Black/images/footer_logo.png’?>”/>
where footer_logo.png is your image name ,put this image in image folder of your theme and DigitalGallery-Black is your theme name.
Forum: Themes and Templates
In reply to: space between image and photo/videochange css property margin:15px 0px 15px 0px;
in syle.css on line no 204 amd 75 (in the theme folder).entry p {
margin:15px 0px 15px 0px;
}p {
margin:15px 0px 15px 0px;
}Forum: Themes and Templates
In reply to: Theme Css override my custom html/css code in Pagethere are two option
1. just remove style.css from theme and use custom css file
2.try to find out witch css property overide your custom css,remove from style.cssuse inline css if problem not resolved.
Forum: Themes and Templates
In reply to: text widgetremove text-align: center; property from inline css ,where you want to change. and also you can use text-align: left;
Forum: Themes and Templates
In reply to: Why isnt my footer at the way bottom?!?we have to make many changes in your style.css,it is not posible without FTP control of your server.
Forum: Themes and Templates
In reply to: Why isnt my footer at the way bottom?!?your website css is not a strong css.but if want to fix this problem for temprory ,Add this css class in style.css file
.footer{
margin-top: 500px;
}Forum: Themes and Templates
In reply to: Help with the CSS and PHP (Barter)TotallyLost,
it is not posible to work for you in week time but give me your website URL,i will try to manage your problemForum: Themes and Templates
In reply to: text widgetOn style.css line no.378
#sidebar .boxr, #sidebar .categories, #sidebar .linkcat {
border-color: #CCCCCC;
border-left: 1px solid #CCCCCC;
border-right: 1px solid #CCCCCC;
border-style: solid;
border-width: 4px 1px;
margin-bottom: 20px;
padding: 10px 0;
text-align: center; /*add this css property*/
}