naturepoonam
Forum Replies Created
-
Hello,
I am using event calendar extended plugin for eventt registration and management what good about all in one event calendar.
i am having problems displaying the event name in the calendar with extended plugin plus its not showing registration form.
i am not a techie guy and having lots of problems with wordpres
any advice or help is highly appreciatedpoonam
Forum: Fixing WordPress
In reply to: event manager questionany ideas anyone
Forum: Plugins
In reply to: All-in-One Event Calendar displayissueHello,
Any ideas anyone
Poonam
Forum: Fixing WordPress
In reply to: php code not working in wordpressThanks Josh really appreciate your help it worked.
I have this code to display records from table
<?php
$db_host = ‘mysql12.abc.com’;
$db_user = ‘test1’;
$db_pwd = ‘Test123’;$database = ‘testdatabase’;
$table = ‘pricing’;if (!mysql_connect($db_host, $db_user, $db_pwd))
die(“Can’t connect to database”);if (!mysql_select_db($database))
die(“Can’t select database”);// sending query
$result = mysql_query(“SELECT * FROM {$table}”);
if (!$result) {
die(“Query to show fields from table failed”);
}
$fields_num = mysql_num_fields($result);
echo “<table border=’1′><tr>”;
// printing table headers
for($i=0; $i<$fields_num; $i++)
{
$field = mysql_fetch_field($result);
echo “<td>{$field->name}</td>”;
}
echo “</tr>\n”;
// printing table rows
while($row = mysql_fetch_row($result))
{
echo “<tr>”;// $row is array… foreach( .. ) puts every element
// of $row to $cell variable
foreach($row as $cell)
echo “<td>$cell</td>”;echo “</tr>\n”;
}
mysql_free_result($result);
?>Now i am seeing a lot of space between the table headers and the page title there is a big white space can you tell me why its showing the white space
thanks
poonam
Forum: Fixing WordPress
In reply to: link problemI tried
.post-15 #header
it didnt work
any idea
poonam
Forum: Fixing WordPress
In reply to: link problemi tried to reference the blog url in css like this
This is the blog link
News.catid-15 #header
it didnt work
any other idea
thanks for help
poonam
Forum: Fixing WordPress
In reply to: link problemyes ur right.
I am new to wordpress learning as I go. A co-worker is helping me with to learn wordpress he told me this is the code
/*—Code by Rajiv to change the header— */
.page-217 #header,
.page-247 #header,
.page-239 #header,
.page-243 #header,
.page-253 #header,
.page-278 #header,
.page-294 #header,
.page-241 #header,
.page-36 #header,
.page-43 #header,
.page-39 #header,
.page-45 #header,
.page-197 #header,
.page-245 #header,
.page-250 #header,
.page-258 #header,
.page-262 #header,
.page-266 #header,
.page-217 #header,
.page-205 #header,
.page-276 #header,
.page-274 #header,
.page-292 #header,
.page-13 #header,
.page-14 #header,
.page-15 #header,
.page-272 #header,
.page-256 #header,
.page-260 #header,
.page-264 #header,
.page-268 #header,
.page-183 #header,
.page-185 #header,
.page-187 #header,
.page-56 #header,
.page-190 #header,
.page-192 #header,
.page-228 #header,
.page-232 #header,
.page-234 #header,
.page-236 #header,
.page-230 #header,
.page-223 #header,
.page-225 #header,
.page-203 #header,
.page-219 #header,
.page-254 #header,
.page-631 #header,
.page-183 #header{height:250px; background:url(images/top.gif) top center no-repeat #fff; width:100%}
to just add the blog page numbers to it and it will work.
If I change the code he will get mad.
I totally understand ur logic just dont know how to refer to the blog which is coming as category.
thanks for all your help
poonam
Forum: Fixing WordPress
In reply to: link problemOh i am sorry not all pages i am so sorry few pages I want them to see different header with different size thats why i am changing the style sheet
I am lost I checked on google how to refer to the blog link in stylesheet didnt get any help
Forum: Fixing WordPress
In reply to: link problemyes same header for blog and pages.
Forum: Fixing WordPress
In reply to: image display problemThank you it worked appreciate your help
it was my mistake.