ghanshyamgadhiya
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Text Huge in IE, fine in firefoxit should work.
i know this is not proper but do it for checking.
just put your style tag in body tag..<body style=”margin:0px 0; padding:0; color:#ccc; background: #343434; line-height: 1.4em; font-style:normal; font-variant:normal; font-weight:normal; font-size:12px;font-family:Arial, Sans-Serif;text-transform:capitalize;”>….</body>
it may help you. ??
Forum: Installing WordPress
In reply to: General database questions.just do this
in wp-config.php file you havedefine(‘DB_NAME’, ‘wordpress’); // The name of the database
define(‘DB_USER’, ‘username’); // Your MySQL username
define(‘DB_PASSWORD’, ‘password’);create your database and provide its name, username and password here.
Forum: Fixing WordPress
In reply to: Having problems with customizing permalink structureJust write your permalink structure like this
index.php/%category%/%postname%/
instead of
?/%category%/%postname%/?It must work. ??
Forum: Themes and Templates
In reply to: Adding Header Image Breaks Styleok.
Forum: Fixing WordPress
In reply to: Advertisement pushes down texts when viewed in internet explorerok, you are always welcome.
Forum: Fixing WordPress
In reply to: Advertisement pushes down texts when viewed in internet explorerI think this must work.
just put this code
<?php
$br = strtolower($_SERVER[‘HTTP_USER_AGENT’]); // what browser they use.if(ereg(“msie”, $br)) {
echo “<div style=’float:right;’>”;
} else {
echo “<div>”;
}
?>so when your site is open in IE than and only than div move to right side. other wise in firefox it just do nothing.
I have checked, this browser detection script is worked. but if dont , you can easily find other script from net. just check this condition and put your div.Now you can use “vertical and square banner” ??
Forum: Fixing WordPress
In reply to: Advertisement pushes down texts when viewed in internet explorerjust put your text content in this div
<div style=”float:right;”>
<p>When I first saw our baby…….doctor.</p></div>it will solve your problem in IE but create problem in firefox. i dont have your other coding information. so i m able to do just this. try out other style tag with this div you may get success.
Forum: Fixing WordPress
In reply to: Advertisement pushes down texts when viewed in internet explorercan i see your site ?
Forum: Themes and Templates
In reply to: Need some help fixing the problem i have nowjust modify width in following class.
#headerimg,#page,#header,#footer,.narrowcolumn,.widecolumn,#sidebar
Forum: Themes and Templates
In reply to: Adding Header Image Breaks StyleI think you have style sheet problem.
check out this line in your header.php file<link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_url’); ?>” type=”text/css” media=”screen” />
i think your script dont get link to style.css file thats why you got this problem.
Forum: Your WordPress
In reply to: Edit comments fieldfor backup just copy your file into your machine ??
Forum: Your WordPress
In reply to: Delete the admin link from the pagesas explain by classmember just <?php wp_register(); ?> replace it with <?php //wp_register(); ?> in your sidebar.php (wp-content/themes/default).
Forum: Fixing WordPress
In reply to: 2 or more blogs on the same domainYou can do it.
you have to setup 5 different blog databases.
you can access each blog with different urls.
i have do it for 2 blogs.Forum: Plugins
In reply to: FeedBurner Plugin “blank field” behaviourin feedburner site you have ‘edit feed detail’ option go there and update your site url. i am not sure but i think it may help you to solve your problem. do it on your on risk.
Forum: Fixing WordPress
In reply to: Header Probkempresentationheaven is a text, and blue background is a image, so text is always load faster than image. so you get effect like this.