Edward Caissie
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Adding BadgeFeel free to drop by my main site. Leave me your details on the Contact Us page and I will let you know once the plugin is approved.
BTW, this thread was the inspiration for me to write the plug-in.
Thank You!Forum: Themes and Templates
In reply to: CSS help: customized my header and now navigation bar is wackyYou’re welcome.
Forum: Fixing WordPress
In reply to: Calendar is misaligned when viewed in a post…It’s a known issue …
Here is the trac ticket: http://core.trac.wordpress.org/ticket/11414, so it is being addressed.
In the meantime, I decided to install the Ajax Calendar plugin as a substitute. There are many other calendar plugins available but this one suits my current needs.
Forum: Themes and Templates
In reply to: Centering Post titleI would suggest looking at the CSS elements that contain
h2.entry-titleas part of their identifier.Those appear to be doing the bulk of the styling.
Forum: Themes and Templates
In reply to: CSS help: customized my header and now navigation bar is wackyIn your style.css file (around line 146) change the
#blogtitle aelement to:#blog-title a { background:url("taste-hungary-logo.jpg") no-repeat scroll center top transparent; display:block; height:177px; width:286px; margin:0 auto; }… by adding the
margin:0 auto;property your image will center.Forum: Fixing WordPress
In reply to: Adding BadgeIt appears the theme on your website does not make use of a sidebar which may be affecting the functionality of the plugin.
If this is the case, as in there are no sidebars or widget areas, then I have written a new plugin (BNS Add Widget, to be publicly released soon) that may solve this issue.
Forum: Fixing WordPress
In reply to: CSS problem: Background image will not displayLook at this part:
body { font-size: 62.5%; font-family: Arial, sans-serif; color: #272727; background: url(‘images/header_bg.png’) top center repeat-x white; }
Try it as this:
body { font-size: 62.5%; font-family: Arial, sans-serif; color: #272727;} background: {url('images/header_bg.png') top center repeat-x white; }Forum: Fixing WordPress
In reply to: Adding BadgeWithout really looking into the theme you are using my first thought, now, would be to edit the theme template file(s) and insert the “award” code.
Your idea of using “a jpg of the image” may work but would also most likely require editing the theme template file(s) as well.
Forum: Fixing WordPress
In reply to: Adding BadgeIt appears the theme on your website does not make use of a sidebar which may be affecting the functionality of the plugin.
I can see the plugin is activated in the page source(s) but I do not see the code to display the “logo” … I’m sorry this solution is not working for you.
Forum: Fixing WordPress
In reply to: Modify blogroll widget outputWhat you posted looks fine … maybe a URL to your blog would show more information.
Forum: Fixing WordPress
In reply to: Adding BadgeThe plugin is pretty much a fill in the blanks process. I used the information above and it shows the graphic fine.
In what way are you finding it “does not work”?
Forum: Fixing WordPress
In reply to: How do I use the “more” tag feature?Are you looking for something along the lines of the <!–nextpage–> tag?
Here is a bit from this page: http://codex.wordpress.org/Writing_Posts
<!–nextpage–> WordPress tag similar to the more tag, except it can be used any number of times in a post, and each insert will “break” and paginate the post at that location.
Forum: Fixing WordPress
In reply to: Exclude category from home pageYou’re welcome!
Forum: Fixing WordPress
In reply to: Modify blogroll widget outputThe default blogroll widget “Links” does not provide very much in the way of CSS identifiers.
It will use the widget defaults of the theme and adds the wrapper classes:
xoxo blogrollThat would be it … based on the page source from my site where I actually use it. I imagine you could use some javascript is so inclined but I believe making use of wp_list_bookmarks() may be much easier to implement.
Forum: Fixing WordPress
In reply to: Modify blogroll widget outputHave a read of this page in the codex: http://codex.wordpress.org/Template_Tags/wp_list_bookmarks
I believe you would be able to accomplish all that you are asking by using this standard function and a bit of xhtml/css.