adamjb
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Nextgen Gallery not generating any thumbnailsCheck to see if you have the GD Image library for PHP installed, or that the permissions on your gallery folder allow PHP to write files.
It’s actually probably the latter, so start there.
Forum: Fixing WordPress
In reply to: Sticky post on all pagesI haven’t done any serious work with WordPress in ages, but if you try to use an if statement, or a switch statement instead of two loops, you may find that your problem disappears. But again, I haven’t looked into it.
Forum: Fixing WordPress
In reply to: Editor replacing my <i> tags with <em>If you use the Firebug plugin for Firefox you can see what CSS styles are applied to it and where they are in the code. If you’re interested in web design check it out, it’s pretty neat.
The other issue your having with the backslashes is a WordPress issue I believe. Those slashes are placed to prevent malicious code from messing with your database, so I think the problem is within the WordPress code somewhere. (aka: I don’t think you can do anything about it, except file a bug report)
Forum: Fixing WordPress
In reply to: Editor replacing my <i> tags with <em>Sorry, if you can find that section of the code delete “em,” so that you’re left with:
strong, b, h1, h2, h3, h4, h5, h6 { font-weight: bold; }
I hope that’s clearer.
Forum: Fixing WordPress
In reply to: Editor replacing my <i> tags with <em>Line 510 of style.css in your theme’s folder:
strong, em, b, h1, h2, h3, h4, h5, h6 { font-weight: bold; }
The “i” tag is only working because your theme doesn’t change it’s style. I think the “i” (italic) tag is deprecated and has been replaced with the “em” (emphasis) tag, so I guess that’s why WP switches it out.
Forum: Fixing WordPress
In reply to: How do I transfer my atom.xml feed to my new rss feed?Have you tried using url rewrites in your .htaccess file?
https://www.yourhtmlsource.com/sitemanagement/urlrewriting.html
Check out the section called “Basic Redirects”. This might work.
Forum: Fixing WordPress
In reply to: Table borders and column widthsYou should use CSS to style your table. I think it’s easier than what you are doing. So if you want to change your cell padding just add this below to your css style sheet:
td { padding-left:10px; padding-right:10px; }
You can also change the cell spacing by doing the same thing, but instead using the “margin-left” (or right, top, bottom).
I’m sorry if you already know this, or if it’s totally not what you needed to know.
Forum: Fixing WordPress
In reply to: ColdStone Logo Move?Sorry, maybe that’s vague. style.css Search for this below.
.tnavinner { float:left; background:url(img/tnavbg.png) repeat-x; width:652px; height:39px; }
Forum: Fixing WordPress
In reply to: ColdStone Logo Move?Open up style.css in your theme’s folder and search for “.tnavinner”
Where it says width:652px; or whatever, just edit that size.
Forum: Fixing WordPress
In reply to: Problems with correct author being displayed.I don’t really have any clue, but maybe it has to do with the permission each user has?
Sorry if this is worthless input.
Forum: Fixing WordPress
In reply to: How do I get rid ofYou have to edit your theme and either delete the part that creates the paragraph with class “post-meta” or if web development isn’t your thing, just edit style.css in your theme folder and add:
.post-meta { display:none; }
This is just cheating so if you want to do it right, read up:
Forum: Fixing WordPress
In reply to: Table borders and column widthsI opened your code in a browser and I see what you mean, I think. You need to delete the <tr> after your first row, you have an extra one.
Or you can just copy this:
<table border="1" cellspacing="value" cellpadding="value" rules="all"> <tbody style="font-size:75%"> <tr> <td width="50">Gem.:</td> <td colspan="3">Datum:</td> <td width="80">Tijd:</td> <td width="70">Locatie:</td> </tr> <tr> <td>De Rijp</td> <td width="20">do</td> <td width="20"></td> <td width="30">mei</td> <td></td> <td></td> </tr> <tr> <td></td> <td>ma</td> <td>29</td> <td>jun</td> <td></td> <td></td> </tr> <tr> <td>Edam</td> <td>do</td> <td>23</td> <td>apr</td> <td></td> <td></td> </tr> <tr> <td></td> <td>di</td> <td>1</td> <td>sep</td> <td>20.00-22.00 u</td> <td>De Singel</td> </tr> <tr> <td>Velsen</td> <td>di</td> <td>16</td> <td>juni</td> <td></td> <td></td> </tr> <tr> <td></td> <td>ma</td> <td>31</td> <td>aug</td> <td>19.30-21.30 u</td> <td>Het Mosterdzaadje</td> </tr> <tr> <td>Westzaan</td> <td>wo</td> <td>17</td> <td>juni</td> <td>19.30-22.00 u</td> <td>De Kwaker</td> </tr> </tbody></table>
Forum: Fixing WordPress
In reply to: Table borders and column widthsI don’t really understand your question, but here are a couple resources:
https://mondaybynoon.com/2009/04/20/taking-advantage-of-what-tables-have-to-offer/
https://www.smashingmagazine.com/2006/12/29/css-based-tables-modern-solutions/
Forum: Fixing WordPress
In reply to: Redirect after submit comment?I just did this on my site: https://gigglepixel.com
I haven’t looked into it too much, but I set the value of redirect_to to the full url that I want to appear, in my case “https://gigglepixel.com”.
Hope this helps.
-A
Forum: Themes and Templates
In reply to: Does default theme display comments on home page?