Edward Caissie
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How do i add a .php file to theme filesUpload the file you wish to add via a FTP program is one of the easiest methods.
Forum: Fixing WordPress
In reply to: Nested Comments and BordersThe problem you are experiencing is coming from this line (94) in your CSS file:
p, li, .feedback { font:90%/175% 'Lucida Grande','Lucida Sans Unicode',Verdana,sans-serif; letter-spacing:-1px; }As the
lielements nest the ‘90%’ property is “multiplying”, thus “shrinking” your comment text. I would start with that as a place to make changes.Forum: Themes and Templates
In reply to: Theme edit help needed urgentlyI would suggest posting this request here: http://jobs.wordpress.net/
Forum: Fixing WordPress
In reply to: Background Color for Single WidgetYou’re welcome!
Forum: Fixing WordPress
In reply to: Boxing an Image in a Post w/out caption titleIf you just put a space in the caption field I would expect you should still get the caption “box” around the image; but it could be theme dependent. I quickly tried it on one of my test servers and it appears to work.
Forum: Fixing WordPress
In reply to: If the_author statementHave you tried the ‘get_the_author’ function instead?
Forum: Plugins
In reply to: how long it takes to approve a new plugin and how i know when it approved ?Generally it can take from a few hours to a few days; you will receive an email with some details how to gain access via SVN once it is approved.
Forum: Fixing WordPress
In reply to: Background Color for Single WidgetTry using this CSS element (at the end of your style.css file:
li#text-14.widget_text{ ... }Just replace the ‘…’ with the properties you want to modify.
Forum: Fixing WordPress
In reply to: Change Header CaseYou’re welcome! Glad to help.
Forum: Fixing WordPress
In reply to: Change Header CaseSearch for this property in your style sheet:
text-transform:uppercase;By removing it, or commenting it out, you will remove the “CAPS” styling. NB: The property appears several times in the style sheet.
Forum: Fixing WordPress
In reply to: Post listing within a postGood for you!
Forum: Fixing WordPress
In reply to: Post listing within a postHave a look at this page: http://codex.wordpress.org/Function_Reference/query_posts
Forum: Fixing WordPress
In reply to: How to position a Widget at the bottom of page?I believe this is doable with a combination of code and CSS placement.
- Modify functions.php to define an additional widget area
- Add the second widget area in the sidebar, beneath the existing widget area
- Use CSS ‘position:relative’ to place the second widget area at the ‘bottom’ of the sidebar
Just some thoughts …
Here is some additional reading that may help as well:
http://codex.wordpress.org/Widgetizing_ThemesForum: Fixing WordPress
In reply to: Show empty categoriesI would expect to find the “main navigation bar” in your header.php file; have you looked in there for the code that is displaying it?
A link to your blog and which theme you are using may also be helpful in providing suggestions.
Forum: Fixing WordPress
In reply to: How to remove links from the_tags?Have you looked at this reference in the codex: http://codex.wordpress.org/Function_Reference/get_the_tags. The example under Usage may be what you are looking for …