Phil
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: [Redirection] not sure what i am doing can you look?What are you trying to do?
These look like http requests to me (basically, people visiting your site through different browsers, IP’s etc)
Not sure what you are trying to do with them
Forum: Fixing WordPress
In reply to: unable to log in to wordpress admin areaMySQL databases usually have a button called ‘phpMyAdmin’ in cpanel, under section ‘databases’.
Opening this and logging in will take you to where all the WordPress tables are.
From here, you need to open the database on the left menu, then down to ‘users’.
From the data on the right, you can then see the users and the corresponding passwords.
You may want to check out:
http://codex.wordpress.org/Resetting_Your_Password#Through_phpMyAdminForum: Fixing WordPress
In reply to: new user registrationAre there new users being created, or just emails?
Forum: Fixing WordPress
In reply to: post only shows if i leave original in the trashBy default, WordPress adds a ‘2’ onto the end due to the name already exiting in the database (albeit in the Trash).
Normally, by deleting from trash permanently (by going into trash and ‘delete permanently’ the post).
Once this has been done, you then go back into your post and amend the url to remove the 2 (located just above where the title of the post goes.)
Phil
Forum: Fixing WordPress
In reply to: post only shows if i leave original in the trashlink?
Forum: Fixing WordPress
In reply to: Add a link to .swf objectIt may be easier to insert the link into the Flash .flv file and republish.
Or
Another way may be to add a div on top of the flash file (same height and width), use a transparent png to layer over the top and add a z-index to it to bring it to the top of all layers.
CODE
<div class="flashcontainer"> <div class="transpng"> <a href="<?php echo get_option('home'); ?>/" title="Кинотека">[kml_flashembed movie="wp-content/uploads/2011/05/Kinoteka-logo.swf" height="120" width="350" ]</a> </div> </div>CSS
.flashcontainer { width: 350px; height: 120px; position: relative; } .transpng { background: url(images/transparent_png.png) no-repeat; width: 350px; height: 120px; z-index: 9999; position: absolute; top: 0; left: 0; }Try that. If the flash still appears on top, try wrapping that in it’s own div and give it a z-index in CSS of 1.
Forum: Fixing WordPress
In reply to: main menu bar disappearedLooks fine to me in Firefox 4, Chrome and IE8.
Both buttons appear in an iframe, so by disabling iframe, you disable both.
A way to fix would be to add them into a table of a single row but with 2 columns and each button inside it’s own cell.
Another way would be to do the same with div’s.
Or, the Facebook way here:
http://developers.facebook.com/docs/reference/plugins/like/Hope this helps.
Phil
Forum: Fixing WordPress
In reply to: problems with fontOpen header.php and near the start, you’ll see the place to enter the encoding (eg, UTF-8)
For Latvian symbols, I think you need ISO-8859-4
Forum: Fixing WordPress
In reply to: Targetting individual footer widget areas…link?
#main is the entire area below the header and navigation. It is where all the content starts.
#wrapper is the whole container the site sits in.
#content is where the posts and pages get displayed.
#primary and #secondary control the sidebars.
Forum: Fixing WordPress
In reply to: Targetting individual footer widget areas…There are no footer areas in Twenty ten theme. Can you be more specific?
Forum: Fixing WordPress
In reply to: adding padding-left to footer-wdiget area not workingTo add padding in CSS:
padding-left: 200px;Obviously change 200px to whatever you want. Without knowing which bits you’re trying to move, we can’t be any more specific.
Forum: Fixing WordPress
In reply to: Working blog one day has a parse error?Can you post what’s on line 7 in index.php?
Forum: Themes and Templates
In reply to: Mobile theme help. pleaseHave you tried WP-Touch plugin?
http://wordpress.org/extend/plugins/wptouch/
Aside from that, you’ll need to edit the CSS for these mobile themes to suit.