doc4
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to split a post title in two lines?t-p,
We use the
<br>tag as well especially if using Flash to display titles. Otherwise you might consider wp-typogrify http://wordpress.org/extend/plugins/wp-typogrify/ to take care of any widow situations.Forum: Fixing WordPress
In reply to: header text broken, theme font over-riddenJym Tarrant,
I’m currently seeing a bottom border via CSS on the titles not an underline, unless we are talking about something else?
Forum: Fixing WordPress
In reply to: Changing header/html Titlepjay714,
Most likely this code is located in your header.php file. Look for the title tag:
<title></title>And remove the reference to your website. Occasionally the code can be customized for the theme so if you would like to display this code here we can help a little more.
Forum: Fixing WordPress
In reply to: Indexation Problemswp_doubt,
What is the website?
Forum: Fixing WordPress
In reply to: Extra hyphen and number on post URLsFishDogFish,
If I’m not mistaken this number represents a second post by the same name. For example: a post named “myAwesomePost” cannot exist twice. WordPress therefore would append the name of a second post by the same name like “myAwesomePost-2” and so on. This is the case even if you have trashed that inital “myAwesomePost” post.
All posts need unique names.
Forum: Fixing WordPress
In reply to: WordPress Admin Dashboard – Adding Page Contenttfx2010,
Sounds like you’re on the right track. If you need additional CSS set up your selectors in the style.css file and they will be fully usable within the page HTML.
Forum: Fixing WordPress
In reply to: Problems with directories?Ellsinore,
Link to your site and a demonstration image?
Forum: Fixing WordPress
In reply to: How to Center Page Title TextKyle.Walters,
style.css : line 52
h1 { font-weight: normal; text-align: center; }Forum: Fixing WordPress
In reply to: Creating Username and passworf fieldsairflyer172,
Have you looked into BM Custom Login:
http://wordpress.org/extend/plugins/bm-custom-login/Forum: Fixing WordPress
In reply to: a couple issues, theme editing issue (css?) and lightboxcurrans1,
From the Lightbox Plus FAQ: http://wordpress.org/extend/plugins/lightbox-plus/faq/
“Finally, it seems that recent version of WordPress (or perhaps the plugin is causing this in some way I am not aware of) do not automatically add the link to the full size image. You must also make sure that when you are adding an image from the WordPress media dialog control you must make sure there is a link to the image in the Link URL field. The easiest way to get the correct link is to click on the link to image button beneath the field. Visual depiction of what is required when adding images in order for lightbox to function correctly.”
Try asking the plugin author for additional help.
Forum: Fixing WordPress
In reply to: cant change my header imagemjcaestecker,
http://drlizmd.com//wp-admin/themes.php?page=custom-header&step=2
That is an incorrect URL to begin with. But I understand what you’re referring to. Can you tell us what theme you are currently using so we can help?
Forum: Fixing WordPress
In reply to: Need help with Blog Button Codeecrawley,
Actually the code is being displayed as:
<div align="”center”"> <a target="”_blank”" href="”http://www.mysouthernfriedlife.com”"><img target="_blank" href="http://s573.photobucket.com/albums/ss173/ecrawley/?action=view¤t=southernfriedbutton-1.jpg" src="”<a"><img border="0" alt="Blog button" src="http://i573.photobucket.com/albums/ss173/ecrawley/southernfriedbutton-1.jpg"></a>" >”> </div>Check your quote marks and consider typing them in again manually, this may be a result of copying and pasting the code.
Forum: Fixing WordPress
In reply to: Cannot update Posts/Pagesinsidedesign,
Have you ruled out a conflict with any of your plugins, one or more may not be compatible with WordPress 3.0 or greater.
Forum: Fixing WordPress
In reply to: a couple issues, theme editing issue (css?) and lightboxcurrans1,
Can’t help much with the lightbox but look for the following style around line 1103:
.widget-area a:link, .widget-area a:visited { text-decoration: none; }You will notice these links have not been assigned a color so try this for starters:
.widget-area a:link, .widget-area a:visited { color: #333; text-decoration: none; }Forum: Fixing WordPress
In reply to: Assistance with query_post codeeitai2001,
Give this a shot:
<?php query_posts(array('category__and'=>array(64),'showposts'=>4,'orderby'=>rand,'post__not_in' => array(121))); ?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <!-- Your stuff here --> <?php endwhile; endif; ?>