anavy
Forum Replies Created
-
Forum: Your WordPress
In reply to: Amidst the madness – my attemptTry this CSS changes:
#rap {
padding: 0;
margin: auto;
width: 700px;
position: relative;
}
#menu {
width: 140px;
position: absolute;
text-align: right;
background-color: rgb(192,211,226);
top: 0;
right: 0;
}
This way, #menu is Absolutely positioned Relative to #rap.Forum: Themes and Templates
In reply to: CSS glitch/misunderstandingBoth background color values are #063 – verified by ColorCop
Forum: Fixing WordPress
In reply to: nb28022004: all categories link 404Did you notice that 28022004 nightly build is “WP1.2 alpha”?
What ever happened to WP1.1 Final?Forum: Fixing WordPress
In reply to: GMT point?I find the GMT method very useful & logical. Before using it, you had to know your time zone difference RELATIVE to the Server’s TZ – which could be anywhere in the world.
Now with WP1.1, all times are referred to GMT (aka: London, UK time). You see the GMT and compare it to your Local time. If let’s say, you are in NY, US (west of London), you will note that your LMT is 5 hours LESS than GMT, so you set it to differ by -5 (minus 5). If you are in Moscow, Russia (east of London), you are AHEAD of GMT by 3 hours, so you set the difference to 3 hours. No more concern about the location of the Server! Great!!Forum: Requests and Feedback
In reply to: Target for links (Manage Links)Thank you allusion, this will suit my needs exactly.
Forum: Fixing WordPress
In reply to: Question about the days in calendar…thanks allusion. Can you consider adding this method to the Calendar function with a flag for choosing between $weekday and $shortweekday ?
Forum: Fixing WordPress
In reply to: Question about the days in calendar…I had the same problem (in Hebrew), so this is my solution:
1. in wp-config-extra.php, build another array like this one:
$shortweekday[0]='א';
$shortweekday[1]='ב';
$shortweekday[2]='ג';
$shortweekday[3]='ד';
$shortweekday[4]='ה';
$shortweekday[5]='ו';
$shortweekday[6]='ש';
2. copy function get_calendar($daylength = 1) from template-functions.php (WP1.01) or template-functions-general.php (WP1.1) to my-hacks.php and rename it: my_get_calendar($daylength = 1) so you don’t have to change it when you upgrade.
3. In this function, change any $weekday (2 times, inc. the global declaration) to $shortweekday.
That’s all.Forum: Everything else WordPress
In reply to: 3 year blogiversaryI join your blessings. Kudos to the wonderful WP team.
Forum: Everything else WordPress
In reply to: YAWPS – My second official WordPress site!Useful and cool. All I have to do now, is try cooking…
Forum: Plugins
In reply to: archive hacking…LaughingLizard: To show all the archived years in the Select box, the
$years = $wpdb->get_row(....should be changed to:$years = $wpdb->get_col(.....
There is another problem when the Order is by Category: it uses “post_category” from $tableposts
instead of “category_id” from $tablepost2cat.Forum: Plugins
In reply to: WP Backup/Restore new versionI can’t use it too, as functions: exec,system,dl,passthru,chown are disabled by my hosting provider (Dreamhost) for security reasons…
Forum: Themes and Templates
In reply to: css body tag problemsPut your scrollbars definitions in html {} insted of the body.
Forum: Plugins
In reply to: phpGiggle-1.0.2 Updated ReleaseVery nice hack, but it can’t deal with Non-Latin character sets (Hebrew etc). Can you adopt it for World-wide use?
Forum: Fixing WordPress
In reply to: Simple master archive?OK, I had a problem – not noticing that “require_once(‘wp-blog-header.php’);” was loaded BEFORE the hack file, so posts_per_page was already processed… All is fine now, sorry for the trouble (:
Forum: Fixing WordPress
In reply to: Simple master archive?LaughingLizard: I’m using Ver 1.01 and wp-grins is the only hack installed for now.
funny, when I pass “?posts_per_page=-1” in the URL box, it works fine, but it ignores this var that is embedded in the code… The same happens if I include the hack file or run it as a standalone.