gornik321
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Side menu goes belowIt works fine in fireforx. Try to edit the css.
In the style.css file look for:
#content {
font-size: 1.2em
}
and add this line
overflow: hidden;
orword-wrap: break-word;
.
The code:
#content {
font-size: 1.2em
overflow: hidden;
}
Hope this helpsForum: Themes and Templates
In reply to: Blix Contact Form not working?My mail server is Microsoft Exchange 2003 running on Windows 2003.
I don’t know what Yahoo is using.Forum: Themes and Templates
In reply to: Blix Contact Form not working?hi
I had the same problem. I’m running on windows using exchange server and had to change this code:
in contacts.php changed line 86 from
$header .= "From:" . encodeMailHeader($bx_name) . "<" . $bx_email . ">n";
to
$header .= "From: \"" . $bx_email . "\"n";
and it worked.Forum: Themes and Templates
In reply to: All I want is a login button.sorry I forgot to add the link code:
<?php
global $user_ID;
get_currentuserinfo();
if('' == $user_ID){
?>
<a href="/wp-login.php"><img src="button-in.jpg" alt="login" /></a>
<?php }else{ ?>
<a href="/wp-login.php?action=logout"><img src="button-out.jpg" alt="logout" /></a>
<?php } ?>Forum: Themes and Templates
In reply to: All I want is a login button.try this:
<?php
global $user_ID;
get_currentuserinfo();
if(” == $user_ID){
?>
<img src=”button-in.jpg” alt=”login” />
<?php }else{ ?>
<img src=”button-out.jpg” alt=”logout” />
<?php } ?>Forum: Requests and Feedback
In reply to: Importing old posts when starting with WPyes it is. there is a built-in function in the administration panel IMPORT->Blogger
Forum: Plugins
In reply to: WP Cache DOES work with WP 2.0x – Installation instructions hereDid the same thing to make it work on windows except the define(‘WP_CACHE’, true);. I had to change another thing in /wp-content/plugins/wp-cache/wp-cache.php. On line 450 there is a function called wp_cache_check_link witch uses a php function symlink that does not work on windows.
To solve the problem I just entered a “return true” (without the quotes) on the first line of the function.Hope this helps
P.S.: Got the info from Gallir’s site.
Forum: Themes and Templates
In reply to: Default Kubrick Theme Fixed..Including 1px footer/header shift…now we’ll have to worry how things look in IE6, IE7 and FF. Or even Opera. Sux big time. ??
Forum: Fixing WordPress
In reply to: Upload works but I can’t browse or browse allForum: Themes and Templates
In reply to: Include html on wordpress main index page only?you can write this:
<?php
if (is_home()){
?>your html code here
<?php
}
?>
is_home function checks if you are on index.php pageForum: Fixing WordPress
In reply to: Need to move image to the left.on this page: https://www.albums.seacloudies.com/wordpress/gallery/
you’ve got the source code all wrong(two heads are send) on the main page it is okto move the picture to the left you have to edit the source code of the page(probably https://www.albums.seacloudies.com/wordpress/gallery/index.php)
so that your tables wont have the attribute align=center but have align=left.hope this helps
Forum: Everything else WordPress
In reply to: How do I add a QuickTime movie to a blog entry?@holly2000: do the same programs exist for windows platform
Forum: Fixing WordPress
In reply to: Images upload but no thumbnails or previewUpdated to WP 2.0.2 today and the same thing happened again. I changed these lines in wp-includes/functions-post.php:
300: “UPDATE IGNORE $wpdb->posts SET
323: “INSERT IGNORE INTO $wpdb->posts
and every thing started working.I just open page Write->Write Post and then click Browse to select a picture and then upload.
I’m running Apache 2.0.55, PHP 5.1.1, MySQL 5.0.18.
Thought this was fixed in the new version of WP.
Forum: Fixing WordPress
In reply to: Text In sidebarthere is no close tag in this line
<h4>Random Pics from The Gallery:<h4>
Forum: Your WordPress
In reply to: CoXiS WeBlog@piotr82: how did you make the tabs(tags, options, comments)?
whitch prog language(javascript??)