aeon365
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Blog password openly displayed on first pageOh yeah: this is the first time I set up a blog with “fantastico XL”
Forum: Themes and Templates
In reply to: Custom page – add content via php?My homepage is static – so there are no posts I can point to.
I also dont really know “where” to get the content. I mean, I know the page name of my old homepage. But how can I call the text that is saved for that page?Forum: Fixing WordPress
In reply to: 284 update – Error 500 (internal server)got it now. seems like it was the “all in one seo”-plugin that killed it.
Forum: Fixing WordPress
In reply to: 284 update – Error 500 (internal server)nobody knows why automatic update wont work and how i can get around it?
Forum: Fixing WordPress
In reply to: 284 update – Error 500 (internal server)I uploaded my backup.. now I am back with 2.8.2.
When I try to update automatically I get
Downloading update from http://de.wordpress.org/wordpress-2.8.4-de_DE.zip.and nothing ever happens..?
Forum: Fixing WordPress
In reply to: 284 update – Error 500 (internal server)Hm, now I get the error 500 when I try to access the wp-admin.
Blog is still running though.Forum: Themes and Templates
In reply to: headerimage float center instead of leftworks, awesome! thanks! (i had copied the float center from another #. seems like somebody else did the same mistake before me)
Forum: Themes and Templates
In reply to: headerimg gets cropped despite right sizeCutting out doesnt work – wont show any header at all (just white/transparent background)
Changed the px to 830×75 and it works fine! I will change the 830 to fit the rest of the layout but at least it works π
Thanks a lot!
Forum: Themes and Templates
In reply to: headerimg gets cropped despite right sizeheader.php:
<div id=”headerimage”>
</div>nothing like that in the index.php.
I found something at the end of functions.php
I am not really familiar w php but it looks like this resizes my image in some way?
<?php
define(‘HEADER_TEXTCOLOR’, ”);
define(‘HEADER_IMAGE’, ‘%s/img/misty.jpg’); // %s is theme dir uri
define(‘HEADER_IMAGE_WIDTH’, 760);
define(‘HEADER_IMAGE_HEIGHT’, 200);
define( ‘NO_HEADER_TEXT’, true );function mistylook_admin_header_style() {
?>
<style type=”text/css”>
#headimg {
background: url(<?php header_image() ?>) no-repeat;
}
#headimg {
height: <?php echo HEADER_IMAGE_HEIGHT; ?>px;
width: <?php echo HEADER_IMAGE_WIDTH; ?>px;
}#headimg h1, #headimg #desc {
display: none;
}
</style>
<?php
}
function mistylook_header_style() {
?>
<style type=”text/css”>
#headerimage {
background: url(<?php header_image() ?>) no-repeat;
}
</style>
<?php
}
if ( function_exists(‘add_custom_image_header’) ) {
add_custom_image_header(‘mistylook_header_style’, ‘mistylook_admin_header_style’);
}
load_theme_textdomain(‘ml’);
?>Forum: Themes and Templates
In reply to: headerimg gets cropped despite right sizeI also tried to upload the picture via ftp:
i defined the headerimg to be found as: /img/header.jpg
if i upload a 830×75 named header.jpg it does not appear on the blog (black background – instead of transparent as defined).i feel i miss out on some fundamental thing i have to adjust?
Forum: Themes and Templates
In reply to: headerimg gets cropped despite right sizeThe image shown is “after-cropping”
I upload a 830×75 and WP forces me to crop.
If I choose an area to crop the image gets resized and i end up with this grainy image (a resized part of my original picutre)
OR i try not to crop and the image is not there at all – instead i have a black background (see right now).