blackleon1986
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: table problemI would like to ask one more qouestion.
I can not to change position of layout table as “center”
For example i use these codes:
what should I add for change position as “center”?<html>
<head>
<style type=”text/css”>
table,td,th
{
border:0px solid black;
}
table
{
width:100%;
}
th
{
height:50px;
}
</style>
</head><body>
<table><table border=”0″ width=”70%” height=”246″>
<tbody>
<tr valign=”top”>
<td style=”background-color: #5e7d7e; text-align: top;” colspan=”3″>
<h3 style=”text-align: center;”><span style=”color: #ffffff;”></span></h3>
<p style=”text-align: center;”><span style=”color: #ffffff;”>
</span></p>
</td>
</tr>
<tr>
<td style=”background-color: #7f5a58; width: 317px; text-align: center”> </td>
</tr>
<tr>
<td style=”background-color: #ffffff; width: 317px; text-align: top”> </td>
<td style=”background-color: #ffffff; height: 113px; width: 315px; text-align: top”> </td>
<td style=”background-color: #ffffff; height: 113px; width: 130px; text-align: top”> </td>
</tr>
<tr>
<td style=”background-color: #5e7d7e; text-align: center;” width=”317″ height=”27″>
<p style=”text-align: center;”> </p>
<p style=”text-align: center;”><span style=”color: #ffffff;”> </span></p>
</td>
<td style=”background-color: #5e7d7e; text-align: center;” width=”315″ height=”27″> </td>
<td style=”background-color: #5e7d7e; text-align: center;” width=”130″ height=”27″> </td>
</tr>
</tbody>
</table>
</body>
</html>Forum: Fixing WordPress
In reply to: table problemthank you so much esmi i got it.
Forum: Fixing WordPress
In reply to: table problemNot for layouts.
i use tables for my pages and posts.Forum: Themes and Templates
In reply to: How to remove category titleproblem solved 😀
thank you so much Joshuwar and alchymythForum: Themes and Templates
In reply to: How to remove category titleI found these codes in archieve.php just like following;
if (have_posts()){
global $posts;
$post = $posts[0];ob_start();
if (is_category()) {
echo ‘<h4>’. single_cat_title( ”, false ) . ‘</h4>’;
echo category_description();} elseif( is_tag() ) {
echo ‘<h4>’. single_tag_title(”, false) . ‘</h4>’;
} elseif( is_day() ) {
echo ‘<h4>’. sprintf(__(‘Daily Archives: <span>%s</span>’, THEME_NS), get_the_date()) . ‘</h4>’;
} elseif( is_month() ) {
echo ‘<h4>’. sprintf(__(‘Monthly Archives: <span>%s</span>’, THEME_NS), get_the_date(‘F Y’)) . ‘</h4>’;
} elseif( is_year() ) {
echo ‘<h4>’. sprintf(__(‘Yearly Archives: <span>%s</span>’, THEME_NS), get_the_date(‘Y’)) . ‘</h4>’;
} elseif( is_author() )
But i don’t know where I need to make changes