doc4
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Edit H1 style on one page without editing style sheet?osu9400,
Try using inline styles on that H1 tag. For example:
<h1 style="color:#333;text-transform:uppercase;">This is my text</h1>Keep in mind that depending on what the style sheet is declaring for the h1 tag you may need to override some of them. For example if the style sheet declares all h1 tags have a border and you don’t want a border on this new inline style be sure to declare the border style with no border.
<h1 style="color:#333;text-transform:uppercase;border:none;">This is my text</h1>Hope this helps.
Forum: Fixing WordPress
In reply to: How can I do these things with a theme? (Remove text, etc)PiManIII,
You can do anything you want with any theme, the problem is understanding another’s code to do it. Depending on how it’s coded it might simply take some time to figure out.
Forum: Fixing WordPress
In reply to: Thumbnail Heightmelissalicia,
Have you tried using CSS to set the height?
Forum: Fixing WordPress
In reply to: Ca't sign in, can't change passwordrspetersen1,
If you have access to your database you should be able to reset the password by following the instructions here: http://codex.wordpress.org/Resetting_Your_Password
Forum: Fixing WordPress
In reply to: Keeps forcing me to log inImagineTheEnding,
Try looking for a faulty plugin. Turn them all off and see if the issue persists.
Forum: Fixing WordPress
In reply to: older postscollegekid19,
Try using a background image with CSS. Sample example only below as I’m not sure what code you’re using.
<div class=”navigation”>
<div class=”alignleft”>
<?php previous_post(‘« « %’,
‘Toward The Past: ‘, ‘yes’); ?>
</div>
<div class=”alignright”>
<?php next_post(‘% » » ‘,
‘Toward The Future: ‘, ‘yes’); ?>
</div>
</div>CSS:
.navigation .alignleft {
width: 100px;
height: 100px;
display: block;
background: transparent url(images/previous.png) no-repeat 0 0;
}.navigation .alignright {
width: 100px;
height: 100px;
display: block;
background: transparent url(images/next.png) no-repeat 0 0;
}Forum: Fixing WordPress
In reply to: List all posts in current category and group by yearAndyT81,
Here is a plugin you might be interested in:
http://blog.favrik.com/2007/10/26/wordpress-plugin-recent-posts-grouped-by-date/Forum: Fixing WordPress
In reply to: how to delete WP site&start again-in plain speak?Philip D,
Are you looking to wipe the database and start again, or trash the theme and start again?
Forum: Plugins
In reply to: [Limit Post Add-On] [Plugin: Limit Post Add-On] Update for WP 3, pleaseWendihihihi,
Are you currently using the original version of Limit-Post? If so, disable it and activate this newer version.
Forum: Plugins
In reply to: [Limit Post Add-On] [Plugin: Limit Post Add-On] not working perfectlymahmudfaisal,
Can you explain this a little more? The code simply replaces an instance of
the_contentso unless the sidebars are utilizing the same loop there shouldn’t be an issue.thatwastaxing,
You will need to open the warning.js and remove the following from line 29:
ie8: "http://www.microsoft.com/windows/internet-explorer/worldwide-sites.aspx"Try that and let me know if you need additional assistance.
Forum: Fixing WordPress
In reply to: How to put after a number of words in post automatic ?designbuyers,
Have you given Limit Post a try? http://www.doc4design.com/plugins/limit-post/
Forum: Fixing WordPress
In reply to: NEED HELP – Hide comments from anonymous usersSVD85,
That’s it. Give it a try.
Forum: Fixing WordPress
In reply to: How do you deal with 404 errors?jiri2,
Why not set up a redirect on your 404.php file then. That should simply cover everything.
Forum: Fixing WordPress
In reply to: How do I add a page without adding it to the menu?adell50,
I believe the code used to create your menu is sweeping up all pages. You will need to alter that code to not include your new page. http://codex.wordpress.org/Function_Reference/wp_list_pages