brandtmarke
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Category List – Alternating RowsHi there brave WP community,
i have the same problem, can anybody help?many thanks
Forum: Fixing WordPress
In reply to: Too many blank lines under headerseems to be a css issue, can you post a link please?
Forum: Fixing WordPress
In reply to: Can’t upload images, no error messages. WP2.7I dont´know if it helps you, but I had done a fresh WP 2.7 install yesterday and had some problems with the Image/media Manager too.
I compared a original installation package with the files I uploaded to the server and there are some files missing (3 or 4 Javascript files). The Phenomen: when i tried to upload the missing Files on the server they disappeared right after uploading (FilleZilla told me, that where uploaded correctly). So I tried to UL these files via the Web FTP interface of my webhosting and It works. once the files found there place on the server, WP works fine …
Strange.
Maybe it would help you when you have a look if all files are complete on your webspace …
I used the Total Commanders Sync function
Forum: Fixing WordPress
In reply to: Site looks fine in FF but not IE7yes, thats it. I elimineted the conditional comments and reloaded in IE7 and it works …
have you copy & paste from an Microsoft Application?
Forum: Fixing WordPress
In reply to: Site looks fine in FF but not IE7I took a look to the source3 code of the crashed site and found something like this:
<!--[if gte mso 9]><xml> Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 </xml><![endif]--><!--[if gte mso 9]><xml> </xml><![endif]--><!-- -->
everythink after that lines in your source doesn´t appear; so maybe thats the problem …Forum: Fixing WordPress
In reply to: 301 htaccess redirect from subdomain to subdirectoryno idea how to solve this?
Forum: Fixing WordPress
In reply to: How To Make The Header Image To A Linkoh sorry, i didint read your 3rd post …
open the header.php of the default theme and change:
<div id="header"> <div id="headerimg"> <a href="<?php echo get_option('home'); ?>/"><h1><?php bloginfo('name'); ?></h1> <div class="description"><?php bloginfo('description'); ?></div></a> </div> </div>to
<div id="header"> <div id="headerimg"> <a href="<?php echo get_option('home'); ?>/"> </a> </div> </div>add to your style.css:
div#headerimg a { display: block; height: 140px; }Forum: Fixing WordPress
In reply to: How To Make The Header Image To A LinkI think you can do this via css. open your style css and modify /add the following selectors:
div #headerimg h1 { padding: 0; } div #headerimg h1 a { display: block; padding-top: 70px; height: 140px; } #headerimg div.description { position: absolute; top: 130px; text-align: center; width: 740px; }Forum: Fixing WordPress
In reply to: “insert image into post” creates a blank screenI had the same Problem with the “Add Image” Button in the Media Libary Popup – I couldUpload images, add Title, description, etc… but when I tried to insert themn into the post theres only a blank screen …
the problem was: there where not all files of the WordPress installation uploaded to the Server; some Javascript files where missing.
I compared the directory on my Server with a clean WP Installation on my local machine (with gould old Total Commander), uploaded the missing files via Web FTP interface of my hosting (everytime i´ll tried to upload them via FileZilla it failed ?) and voils – it works …
so check out if there are ALL WP files on your server, maybe that could be the problem …
Forum: Fixing WordPress
In reply to: How To Make The Header Image To A LinkDo you want to make the whole Header a Link?