Te Calleja
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 404 error up on logging in to wordpress adminhere are the things i tried to fix my 404 error http://ww.wp.xz.cn/support/topic/wp-admin-not-found-error
Forum: Fixing WordPress
In reply to: URL Help…check this out for moving your wordpress site to your root directory http://codex.ww.wp.xz.cn/Moving_WordPress
for the links, go to your dashboard, then under the Settings tab, click on Permalinks and choose the format you want to use.
Forum: Fixing WordPress
In reply to: Admin rights no longer workingmy admin usernames could not log in to wp-admin the other day (i get a 404 not found error), but my editor usernames had no problem. it turned out that my webhost had to fix some php issues… maybe you need to look at that possibility too?
Forum: Fixing WordPress
In reply to: remove background image from pageit should look like this:
.box-left{ background:#fff; margin:0 0 40px 20px; }Forum: Fixing WordPress
In reply to: remove background image from pagego to your style.css file and look for this code:
.box-left{ background:#fff url(img/content.jpg) no-repeat left top; margin:0 0 40px 20px; }remove the background image url details.
Forum: Fixing WordPress
In reply to: custom widget sidebar on homepagei’m not sure about sidebars, but for widgets, i used this on my site http://ww.wp.xz.cn/extend/plugins/widget-context/
it will let you specify what pages or categories each widget should appear or be hidden.hope this helps!
Forum: Fixing WordPress
In reply to: 404 error up on logging in to wordpress adminwere you able to log in before? this happened to me too, and it was a server issue. after a few hours, i was *magically* able to log in. 😉
Forum: Fixing WordPress
In reply to: Embedded wordpress in existing webpagewhat errors did you get? did the page show up at all? i noticed that there are inline styles and scripts in the blog page. you need to copy those and paste in the right places in your header.php file, and be careful not to duplicate the head and body tags.
Forum: Fixing WordPress
In reply to: Images Not Showing on Pageshow odd! if its in the media library, and the path is correct, and the images are there in the directory… i don’t know why it won’t show up 🙁
any chance that the image is in cmyk and not rgb? i’m just guessing.
Forum: Fixing WordPress
In reply to: Code in page affecting side bar formattinghmm you have an internal css call, maybe you can add it there?
<style type="text/css"> /* This CSS is used for the Show/Hide functionality. */ .more { display: none; text-align: left; } </style>not too sure about this though, i’m terrible at css 🙂
i also noticed on your source code that you seem to have several head and body tags, maybe it would help if you clean those up too. hope it works!
Forum: Fixing WordPress
In reply to: Images Not Showing on Pagestry to view source and see what’s the image path, maybe we can figure something out from there.
Forum: Fixing WordPress
In reply to: Code in page affecting side bar formattingcheck your global.css file and find
#main .more { text-align: right;}it should be
text-align: left;🙂
Forum: Fixing WordPress
In reply to: Embedded wordpress in existing webpagei’m thinking….. maybe you can copy the header of your client’s website (everything from beginning to the navigation menu) and paste that code into the header.php of your wordpress blog.
Forum: Fixing WordPress
In reply to: Code in page affecting side bar formattingi checked your site and it looks fine now. did you turn off the code?
anyway… my layouts screw up sometimes when i miss a closing </div> or inadvertently add an extra one. try viewing the source and see if all your tags are properly paired.
Forum: Fixing WordPress
In reply to: Can you turn widgets off for one post?i use this on my wp site http://ww.wp.xz.cn/extend/plugins/widget-context/
you can specify what pages each widget will be shown or hidden.