ronchicago
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: New user emailed passcode not workingsee if the answer for you resides in one of these threads
http://wordpress.org/support/topic/142916?replies=4
http://wordpress.org/support/topic/177390?replies=4
or possible alternate fix, add this line to your wp-config.php file, right after all the define lines:
ini_set(“sendmail_from”, ‘your.email@example.com’);
Substitute your real working email address there, obviously.Forum: Fixing WordPress
In reply to: Titles Not Showing Upthe title looks ok from the source code and the title appears in the archives. but not on the main post. agreed, seems like a frequent problem. have your tried deactivating plugins? have you modified your post.php or single.php?
Forum: Fixing WordPress
In reply to: How do I align headings/text in my sidebar?this post is a duplicate. 86 it. there is a response on the original…
Forum: Fixing WordPress
In reply to: How do I align headings/text in my sidebar?regarding padding, if you use one value, the specified padding is applied to all four sides. if two values, the first applies to top/bottom, the second to right/left. if three values (shown above) the first applies to top, the second to left/right…
Forum: Fixing WordPress
In reply to: Adding links to image captionsturn off the visual editor and try it in the html mode.
copy your link. highlight your caption. hit the link button and paste in your link. it should not matter if the alt tag is the same as the caption.
if you wish to open a new window when the link it hit add…
target=”_blank” immediately following your link =
<a href="domain.com/path/" target="_blank">you caption</a>the visual editor can sometimes breaks things.
Forum: Fixing WordPress
In reply to: WordPress new user registration password problemsee if the answer for you resides in one of these threads
http://wordpress.org/support/topic/142916?replies=4
http://wordpress.org/support/topic/177390?replies=4
or possible alternate fix, add this line to your wp-config.php file, right after all the define lines:
ini_set(“sendmail_from”, ‘your.email@example.com’);
Substitute your real working email address there, obviously.Forum: Fixing WordPress
In reply to: Query Children of Category Parentnot meant as a bump. but a simpler question is…
does anyone know if one can call a category-child within wordpress? moderator? anyone?
Forum: Fixing WordPress
In reply to: Query Children of Category Parentlet me simplify the above as it looks like a two-part question…
the following code gives me category1 (#150) = title above my image.
i also wish to get the title of child1 and when i substitute #151 i get “no category” above my image.
i found this info in codex but don’t know if i am on the correct track… http://codex.wordpress.org/Template_Tags/query_posts
Forum: Fixing WordPress
In reply to: Query Children of Category Parenti have the similar request only my categories are two children deep. current structure =
category1 > child1 > child2
i have a template page (child2.php) and would like to fill the page with all child2 posts. child2.php template looks like this and wish it to behave like this = http://ffffound.com/
currently i can call category1 (#150 in this example) and fill page with this code =
<h6>» <?php wp_list_categories('include=150&title_li=&style=none'); ?></h6>child1 = #151, child2 = #152
Forum: Themes and Templates
In reply to: Changing information in categoriesthe answer may be in the “excerpt” argument. do a search for excerpt on this forum, there are many discussions.
Forum: Themes and Templates
In reply to: Want to use Image instead of name of blogtrying to figure what <h1> is up to. what does this tell me if i see the blog name even when using this code. shouldn’t name now be positioned off of page which it isn’t. =
/* h1 { font-size: 3em; line-height: 1; margin-bottom: 0; } was 0.5em 9/19/08 and 10/12/08 comment out */ h1 { font-size: 0; text-indent: -1000px; } /* 10/12/08 masthead clickable test */i got this test idea from codex = http://codex.wordpress.org/Designing_Headers
Forum: Themes and Templates
In reply to: Want to use Image instead of name of blogis it because <h1> is now = none?
1) here is the current css when i made the swap-out along with the comment written at the time =
#masthead h1 { /* logo png 9/19/08 with "none" works but lost link ability */ display: none; } /* logo png */2) i just tried this and blog name overprints png image =
#masthead h1 { /* this did not hide clickable blog name */ margin:0; padding:0; } img { border:0; }3) my general masthead css =
#masthead { margin: 0; text-align: left; height: 55px; width: 700px; float: left; background:url(images/da-logo3_950.png) no-repeat; /* new line 9/19/08 it worked */ }Forum: Themes and Templates
In reply to: Want to use Image instead of name of blogI was able to replace the blog title text with a png image. But unable to make that image be a link back home. Here is the code I thought would work…
<div id="masthead"> <h1><a href="http://domain.com"><img src="/images/image.png" title="Domain" alt="Domain" /></a></h1> </div>Forum: Themes and Templates
In reply to: Help with sidebar in IEif no responds i can give you the name of the person i use. i tried your contact form π so don’t know where to send info. i don’t want to make the contact info of this person public as it is her personal email address.
Forum: Themes and Templates
In reply to: Modified headernew challenge on header2.php…
i wish to simplify a nav bar that has 10 category titles on it and wish to display only four.
the existing code =
wp_list_categories('title_li='); ?>i tried this =
<?php wp_list_categories('title_li=' . 'exclude=4,27,32,33,82,147'); ?> <!-- 10/12/08 -->got an error = Parse error: syntax error, unexpected