webophir
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Changing font size and the aboutTo change the font size, open the stylesheet of current theme and you will see the font size definition.
To create “About” page,
hm..you’d better read documentation.Forum: Themes and Templates
In reply to: giving the google ad widget a padding?Answer is in your question:
the ad directly underneath the search form …
It is what you said ??
Forum: Themes and Templates
In reply to: Page templates and CSShttps://codex.www.ads-software.com/Creating_a_Static_Front_Page will be great help.
Forum: Themes and Templates
In reply to: giving the google ad widget a padding?have you tried
margin-left:6px;
?Forum: Themes and Templates
In reply to: Header designOnly Header needs to be changed or whole page?
Forum: Themes and Templates
In reply to: Adding just a bit of html to a postTry use center tag like
<center><img …></center>
Forum: Themes and Templates
In reply to: Switch from Right to Left Sidebarin your style.css of current theme:
.narrowcolumn {float:left;
to
.narrowcolumn {float:right;and
#sidebar {margin-left:545px;
to
#sidebar {margin-left:0px;This will change position of main content and sidebar only. But you need to modify margins/paddming of each block to make it look ok.
Forum: Themes and Templates
In reply to: Problems with the sidebar of my themeare you trying to advertise your site?
I tested on IE6+, FF1.5+, but it looks fine except I do not understand Chinese ??Forum: Fixing WordPress
In reply to: List_subpages HELP!1. I don’t see left column.
2. If you’ve meant right column, subpages keep sub page lists as far as I tested.Forum: Fixing WordPress
In reply to: Why does every post get included in my home pageFirst, I recomment you to read the documentation of WordPress, especially the difference between “Post” and “Page” usage in WordPress.
Forum: Themes and Templates
In reply to: Help a newbie change link colorif your page structure is like this:
<div id=”main”>
…blah blah…
</div>
<div id=”sidebar”>
…blah blah…
</div>Your CSS will be
#main a {color: #your_color_value1; }
#main a:hover {color: #another_color; }
#sidebar a {color: #your_color_value2; }
#sidebar a:hover {color: #another_color;}Forum: Themes and Templates
In reply to: Adding just a bit of html to a postcould you be more specific? i see a lot of <p> </p>s in your post.
Forum: Themes and Templates
In reply to: Tiga 1.0.2 Not Showing Widgets In WP 2,2can I see your sidebar.php from your current active theme?
does your sidebar.php contain this code?
<?php if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar() ) : ?>
.
.
.
<?php endif; ?>Forum: Themes and Templates
In reply to: Sidebar Widgets makes sidebar too widewhat is your purpose of this topic?
Spreading your seed?I see no error in your CSS, but your title seeds RSS. IT IS BIG ERROR!
Forum: Themes and Templates
In reply to: Sidebar problemshm…looks fine to me too.
tested with ie6, ie7, FF1.5, and FF2.
Are you complaining your sidebar is too long? If it is, disable sidebar widget.