WP Libra
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: HELP! Webroot has blocked access to this potentially harmful siteLooks clean to me.
http://sitecheck.sucuri.net/results/drbrettwade.com/
But webroot is 3rd party software that people put on their computer so I would ask them through their website what the deal is.
Forum: Everything else WordPress
In reply to: Add a dot to post/post url PermalinkYou can try
http://wordpress.org/extend/plugins/custom-permalinks/
But adding a dot in the URL adds no significant value if trying to rank for that keyword.
Don’t believe everything Yoast tells you. 🙂
Forum: Fixing WordPress
In reply to: Sidebar Formatting IncorrectlyFind the below in your style.css from going to Appearance > Editor
#secondary { float: right; margin: 10px 20px 0 0; width: 400px; }Change width to 300px
Why you have to do this? No idea. But if you make your sidebar smaller it will fit.
Forum: Everything else WordPress
In reply to: Add a dot to post/post url PermalinkIt will not benefit you an anyway to get a dot in there. Also you have zero chance of ranking for that keyword.
Sorry, but this is the truth.
Forum: Fixing WordPress
In reply to: no links button in my dashboardAhhhh… I read it as missing images. Wow I was off. 🙂
Forum: Fixing WordPress
In reply to: Specific category on the homepage.Have you tried any plugins? There are a bunch to do this.
Forum: Fixing WordPress
In reply to: no links button in my dashboardLook at the source code of the page and what is the URL to the broke images?
Forum: Hacks
In reply to: How To Change Name Field In CommentsI’ve dug through it and everything else. Thanks though.
Seems there is no hook, action, filter to change the value of name for AUTHOR and EMAIL.
Anyone else know of a way to do this?
Forum: Fixing WordPress
In reply to: How to edit archive/blog page to show full postsadd
<div class="navigation"><p><?php posts_nav_link(); ?></p></div>Forum: Fixing WordPress
In reply to: MenusDoes your theme support the built in menu function?
Forum: Fixing WordPress
In reply to: How to edit archive/blog page to show full postsAdd the below in there where you want the content.
<?php the_content(); ?>Forum: Fixing WordPress
In reply to: removing dotted line from custom menu widgetNot sure how the theme works since it is a premium theme and we don’t have access to the files. I would recommend contacting the people you bought it from for support.
Typically we only support free themes due to this reason and others but I thought Id give it a shot.
Forum: Fixing WordPress
In reply to: removing dotted line from custom menu widgetIn wp-admin go to appearance > editor and select the stylesheet on the right side.
Add it to the bottom of there.
Forum: Fixing WordPress
In reply to: setting the width of the navigation and footerI would do the below to make menu stretch across.
.menu > ul > li, #main-nav > ul > li { padding: 5px 1px 0 13px; } .menu > ul > li:last-child, #main-nav > ul > li:last-child { margin-right: 0px; }Forum: Fixing WordPress
In reply to: How to get rid of page title on static front page?Don’t edit it there though.
You need to add a new rule like I had it that way it only removes it off the homepage. But if you want to remove it off all pages then dont add the .home part. I was thinking you wanted home page removal only.