cynnie88
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: I'm unable to direct my site to mysite.com from mysite.com/wordpressDoing a fresh install, one minute.
Forum: Fixing WordPress
In reply to: I'm unable to direct my site to mysite.com from mysite.com/wordpressWhoa dude delete that stuff, this is a public forum lol.
Forum: Fixing WordPress
In reply to: Admin bar disappears when I switch to www.SiteName.comYou might have to run a search and replace on the database to update any old references to the url.
Forum: Fixing WordPress
In reply to: WP is not showing index.php instead it's showing About UsNo problem, glad you resolved it.
Forum: Fixing WordPress
In reply to: WP is not showing index.php instead it's showing About UsI’m not sure, did you move all of the homepage content from the index file to the front page file?
Forum: Fixing WordPress
In reply to: I'm unable to direct my site to mysite.com from mysite.com/wordpressIt might be easier to understand if you link the site, or tell me more about the problem and if your using a shared-host or virtual server / cloud server.
Forum: Fixing WordPress
In reply to: I'm unable to direct my site to mysite.com from mysite.com/wordpressOn second thought a simple .htaccess rewrite might be an easier solution.
Forum: Fixing WordPress
In reply to: WP is not showing index.php instead it's showing About UsThe index.php isn’t meant to be a template file for the homepage. Try using front-page.php instead.
Forum: Fixing WordPress
In reply to: I'm unable to direct my site to mysite.com from mysite.com/wordpressI really know what the situation with your host is though, and you may have to remove any conflicting index documents out of the directory.
Forum: Fixing WordPress
In reply to: I'm unable to direct my site to mysite.com from mysite.com/wordpressYou will have to run a search and replace on the database to remove the wordpress directory from any references. Or reinstall the database if there is no data yet.
Forum: Fixing WordPress
In reply to: problem in replace title to logo in theme travel-bloggerUse the stylesheet, and on the header use the image as the background image.
Something like this:
h1{
background: url(‘my/background/location.jpg’) no-repeat 0 0 ;
text-indent: -9999px;
height: (height of image)
width: (width of image)
}Forum: Fixing WordPress
In reply to: How do I manually delete a plugin via FTPHave you tried just deleting the plugin folder in wp-contents>plugins?
Forum: Fixing WordPress
In reply to: I'm unable to direct my site to mysite.com from mysite.com/wordpressWell it may be called something else, but what I’m trying to say it remove the wordpress folder completely and put all of the contents in the parent directory (whatever folder houses the wordpress folder).
Forum: Fixing WordPress
In reply to: Min-Height 100% ProblemOh and by the way, to get min-height: 100% to work, it needs to be applied to every parent container including the body and html tags.
Forum: Fixing WordPress
In reply to: Min-Height 100% ProblemHave you tried positon: relative; bottom: 0;
(on the footer)
Edit: this may have to be position: absolute to work.