doc4
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How do you deal with 404 errors?jiri2,
Have you tried htaccess forwarding? I’m assuming this is what the redirection plugin may have been attempting but it’s worth a look. http://webmaster.iu.edu/tool_guide_info/redirect.shtml
Forum: Fixing WordPress
In reply to: Widgets moved to bottom of page from Right Sidebarnarellepy,
Include your web address so we can take a look.
Forum: Fixing WordPress
In reply to: Site suddenly not working in Operaksolomon68,
It seems wapple architect is taking control when a user has Opera running. I’m not familiar with wapple but it’s certainly seems a good starting point.
Forum: Fixing WordPress
In reply to: Toolbar on Site?Spencer4678,
I would suspect this code would go in the header.php file and the css would go in the style.css of course. As far as the images go, are you hosting them on your site or are they located somewhere else? You might try using absolute urls.
Forum: Fixing WordPress
In reply to: NEED HELP – Hide comments from anonymous usersSVD85,
Try adding the code where the comments would be displayed. For example within the single.php template (using twentyten theme as an example) line 62, replace
<?php comments_template( '', true ); ?>
with<?php if (is_user_logged_in()) comments_template(); else echo "You can see comments when you have signed in."; ?>Forum: Fixing WordPress
In reply to: Screens suddenly coming up huge fontsandyeller,
Take a look here: http://www.google.com/support/chrome/bin/answer.py?hl=en&answer=96810. Hopefully that is all that it is. Let us know if this works for you.
Forum: Fixing WordPress
In reply to: Screens suddenly coming up huge fontsandyeller,
Did you set the browser font size by accident? What browser are you using?
Forum: Fixing WordPress
In reply to: difference between .com and .org for wordpressaj2009,
Yes you can transfer your free site to your own domain name.
Forum: Fixing WordPress
In reply to: Screens suddenly coming up huge fontsandyeller,
Please provide a link to the site.
Forum: Fixing WordPress
In reply to: sitemap submission on googlecocorioco,
What seems to be the trouble? Submitting a site map to Google is very straightforward: http://ezinearticles.com/?How-to-Submit-Your-Site-Map-to-Google,-Yahoo!-and-MSN&id=660037. Are you having trouble creating the site map itself?
Forum: Fixing WordPress
In reply to: Post titles not showing on indexMagicWork,
Somehow you’ve set the titles to display:none on line 396.
.entry-title { display: none; font-family: Arial,sans-serif; font-size: 26px; font-weight: bold; line-height: 26px; }Without seeing your php it’s hard to judge why the excerpts are no showing. You might try this plugin though: http://www.doc4design.com/plugins/limit-post/
Forum: Fixing WordPress
In reply to: Horizontal Menuwdejesus,
I’m not aware of any plugin to achieve this, basically you need to add some css align:left to those links.
Forum: Fixing WordPress
In reply to: How to move blog-name logoOlwe,
Can you give us the web address. Or are you talking about the admin?
Forum: Fixing WordPress
In reply to: Can't activate more than 3 pluginsTrishaM,
List the plugins you are currently using, maybe there is a conflict between two or more of them.
Forum: Fixing WordPress
In reply to: WordPress Admin Dashboard – Adding Page Contenttfx2010,
Again I would use special CSS for those images that need it.
<div class="spec-img"> <img src="http://www.yousite.com/image-src"> </div>