doc4
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: specify nofollow to specific links in navbarapplesfaceman,
Every WordPress site is coded differently and we don’t know what theme you are using. Whether that be a downloaded theme or a home made one. Basically there is no true default, it all depends on how the site might have been coded.
Check around in your php files and look for either wp_list_pages or search for words that appear in the navigation itself.
Forum: Fixing WordPress
In reply to: Getting these deprecated notices after upgradeplichtenberg,
Have you tried Esmi’s solution yet?
Forum: Fixing WordPress
In reply to: space between content and titleapplesfaceman,
I was under the impression the breaks are in the post itself, they might be in the index.php file, worth a check at least.
Forum: Fixing WordPress
In reply to: do you have the same problembtshow,
Your markup for that link is still incorrect, are you certain it is typed correctly? Can you post a link to the page with the issue?
Forum: Fixing WordPress
In reply to: How to change sidebar size & position?CoachAlvar,
This should do the trick:
.RSSW .sidebars { float: right; margin: 0 30px 0 0; width: 220px; }Forum: Fixing WordPress
In reply to: Google – summary of websitesneak9,
A little more on what Rahul is saying. Add the meta tag to your header.php file above the ‘body’ tag. Like so:
<meta name="description" content="My Description" /> <meta name="keywords" content="My Keywords" />Forum: Fixing WordPress
In reply to: The edit cursor up to the top of the pageadolfoneda,
Is there any chance you can post a screen shot of this?
Forum: Fixing WordPress
In reply to: GOING CRAZY – HTML page links not working??jonny12345,
There seems to be come coding issues which have been tackled previously here. Give the following a shot though you will need to change the width of the #page style. Hopefully this will allow you to see what the problem is.
style.css, line 14
#page { margin: 0 auto -86px; min-height: 100%; /*position: relative; Delete this line */ width: 891px; }Forum: Fixing WordPress
In reply to: How to change sidebar size & position?CoachAlvar,
The sidebar width:
.RSSW .sidebars { float: right; width: 269px; }The sidebar title size:
.sidebars h4 span { background-color: #EBEBEB; display: block; font-family: Verdana,Geneva,sans-serif; font-size: 16px; /* Font Size */ margin: 1px 0; padding: 6px 15px; }Forum: Fixing WordPress
In reply to: do you have the same problembtshow,
This link is incorrect markup. It should be “http://” and you shouldn’t have both “page/2” and “page/3” expecting it not to redirect to a 404.
Forum: Fixing WordPress
In reply to: What is my username?justaquickquestion,
This is confusing, are you talking about logging into your website or the WordPress forums? They are completely different entities.
Forum: Fixing WordPress
In reply to: space between content and titleapplesfaceman,
You have a ton of paragraph breaks above that image. Delete these from the HTML view of the post.
Forum: Fixing WordPress
In reply to: One link in posts!webdiv,
This doesn’t seem like something that would be feasible without limiting the user access to the HTML WYSIWYG Editor and removing the link icon in the Plain Text Editor, but this would leave a user with no means of adding links without copying and pasting a link fro a programs such as Word. This would then place us right back where we were.
Forum: Fixing WordPress
In reply to: specify nofollow to specific links in navbarapplesfaceman,
If using wp_list_pages you might consider switching to hardcoded navigation links then simply add the rel=”nofollow”. Please let us know how your navigation is coded.
Forum: Fixing WordPress
In reply to: Image Paddingihavereverb,
Instead of adding the padding to the image tag, add it to the surrounding div of ‘.alignright’ on line 991 of style.css.
.alignright { float: right; padding: 30px; /* set to 30px to see effect */ }