jonji
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: two comment boxes, and two categoriesFound the problem, no help here on these forums! Sheesh!
Forum: Fixing WordPress
In reply to: two comment boxes, and two categoriesAgain, anybody help?
Forum: Fixing WordPress
In reply to: Can’t get rid of the space below the nav bar ?Set the flash to opaque not transparent, then if the flash is in a div give it an id=”flash”. Then in css go #flash(display:block;margin:0px;} and adjust the margins as needed… works on my sites with flash.
Jonji
Forum: Fixing WordPress
In reply to: Remove P tags when outputting contentYou could wrap everything you want to change in a div tag and then in the css of the class assigned to that div you could write class=”something” and then .something P {display:none;}. Never tried that but the logic is sound (smile)!
Jonji
Forum: Fixing WordPress
In reply to: If I want to transfer a domain name bought through wordpressIt depends on the registrar. I have transferred with GoDaddy by going to them first and giving them the info they need, then to the original registrar and getting the info from them. You then unlock the domain (if it is locked) and the registrars finish the transfer.
GoDaddy is best on the cost/service ratio that I found over the years. They walk you through every step of the process. You get a free year registration for every domain transfereed (or they used to).
Jonji
Forum: Fixing WordPress
In reply to: Can’t WP-ify new template file<?php include (TEMPLATEPATH . (‘wp-header.php’); ?> perhaps?
I’m a long time designer but I’m new to WP (this month) so that may or may not work!
Jonji
Forum: Fixing WordPress
In reply to: how can i customize title in wp_list_pages()Does it have to be a custom field? You can do this with a div wrapper and then apply css to change fonts, spacing, colors, etc.
Jonji
Forum: Fixing WordPress
In reply to: Can’t get rid of the space below the nav bar ?Put the flash inside a div tag so you can then add css to move the div.
Example:
<div style=”margin: -10px 0 -20px 0;”> The flash code </div> The order of the css is top, right, bottom and then left.
Remember that FF and IE sometimes render pixel counts (spacing) differently. If this happens try adding “display:block” to the code. If everything formats correctly then don’t! (smile)
Jonji
Forum: Fixing WordPress
In reply to: Fixing my Laeve a Reply Form / Comment FormSome people who might help: https://www.smashingmagazine.com/2008/04/17/web-form-design-modern-solutions-and-creative-ideas/
Forum: Fixing WordPress
In reply to: Fixing my Laeve a Reply Form / Comment FormSo what you need is a form change? just add the form fields you need like this: <input type=”text”> etc… giving them a name or value that the form can process in the code.
Example:
<input name=”Name” type=”text” value=”Type your name here”> or look here https://www.htmlcodetutorial.com/forms/. Also I have found the WP community very helpful, so ASK the site owner what he is doing to expand his comment form.Jonji
Forum: Fixing WordPress
In reply to: two comment boxes, and two categoriesAnybody?