henkholland
Forum Replies Created
-
Forum: Plugins
In reply to: [Firelight Lightbox] parse error after update..Had the same. My webhost upgraded from 5.3.29 to PHP 5.6.33 and now the problem is solved.
Forum: Plugins
In reply to: [Firelight Lightbox] Latest update breaks downward compatibilityHad the same. My webhost upgraded from 5.3.29 to PHP 5.6.33 and now the problem is solved.
Forum: Reviews
In reply to: [Firelight Lightbox] Upgrade issues 1.6.3Had the same. My webhost upgraded from 5.3.29 to PHP 5.6.33 and now the problem is solved.
Forum: Plugins
In reply to: [Gwolle Guestbook] 2.1.2 ignores frontend css?Well it was definitely a Chrome issue. F5 does not make it reload the .css so I have to clear out the browsers history to make that happen. No such issues in IE11.
Forum: Plugins
In reply to: [Gwolle Guestbook] 2.1.2 ignores frontend css?No, actually I did not but it seems Chrome related (my standard browser). In IE 11 and Edge the fonts for both sites are right.
I must dig deeper then. Thank you.Forum: Plugins
In reply to: [Ad Injection] Getting this error on activationMe too and the change log says:
version 1.2.0.19
* One more undefined variable fix.
* Migrate widget contructor to PHP5 format.Forum: Plugins
In reply to: [WP Bannerize] [Plugin: WP Bannerize] Alternate image instead of show allI use the following code to show random banners but only one at a time:
<?php if(function_exists( 'wp_bannerize' )) wp_bannerize('group=bottomsponsor&limit=1&random=1'); ?>
limit=1 prevents showing two banners in the same spot. Using Random will alternate them in that one spot but having only two different banners makes you click a lot before you can tell it works. 5 out of 10 for each but sometimes four in a row sho the same one.
Great plugin by the way; I only found it yesterday!!!
Forum: Fixing WordPress
In reply to: Revisions of Post or PagesSorry, I am not on WP 3 yet.
Forum: Fixing WordPress
In reply to: Backing up and restoring the whole website.Hi,
Get an FTP program like Filezilla and download your images from the server, preserving the folder structure.
As far as I can see you (wordpress) stores them in
/wp-content/main/2010_02/ etc (monthly based folders).Looking into thes folders you will notice that wordpres creates (depending on your media settings) two or three instances of each image with different sizes and names.
Forum: Fixing WordPress
In reply to: TinyMCE problem with wordpress 2.9.2Contact your host about raising the memory limit
Forum: Fixing WordPress
In reply to: magazine-basic – page format modificationsThis may be of help:
https://codex.www.ads-software.com/Template_HierarchyForum: Fixing WordPress
In reply to: How to change the maximum # of words in blog post?And one more if you want to do it manally in a post in the visual editor:
https://codex.www.ads-software.com/Customizing_the_Read_MoreForum: Plugins
In reply to: adding line to header textI see what you mean. But, alas, I can’try that one out because for the textline “The story of…” there is some css inside the header.php.
Try to move those command to your style.css and also get rid of only three present erros in your style.css:
34 h1, h1 a, h1 a:hover Value Error : margin only 0 can be a length. You must put a unit after your number : 30 30
44 .row Parse Error 20px;
44 .row Parse Error ;}Then I can try again.
And then hopefully the difference betwen IE7 and Firefox in placing the menu will be resolved.
Forum: Fixing WordPress
In reply to: TinyMCE problem with wordpress 2.9.2Tolipoc,
Try this first:
Try re-uploading wp-includes through FTP.Next, it could be a server memory problem. Try adding this to your wp-config.php on a new line right after db_collate:
define('WP_MEMORY_LIMIT', '64M');
Forum: Plugins
In reply to: adding line to header textHi,
make this your h1 in style.css:
h1, h1 a, h1 a:hover { -moz-background-clip:border; -moz-background-origin:padding; -moz-background-size:auto auto; -x-system-font:none; background-attachment:scroll; background-color:transparent; background-image:none; background-position:0 0; background-repeat:repeat; color:#FAFAFA; float:left; font-family:century gothic,arial,verdana,serif; font-size:20px; font-size-adjust:none; font-stretch:normal; font-style:normal; font-variant:normal; font-weight:normal; line-height:normal; overflow-x:hidden; overflow-y:hidden; padding-bottom:0; padding-left:0; padding-right:0; padding-top:0; text-align:right; width:350px; }
I made:: float: left and width: 350 px