flakkito
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Firefox page heightif it were me, I would change the doctype from html 4.0 to:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">and add this to my css:
html, body {
margin: 0;
padding: 0;
height: 101%
width: 100%
}See if that might help. Nice design btw:)
Rob
Forum: Plugins
In reply to: My Lazy gallery is being LAZYWell I hear you re: code but just jump in, ya gotta learn sometime. It aint hard:) Look for this:
./wp-content/plugins/lazy-gallery/lazy-style.css
Try changing it to the full directory path like so:
https://leavesofivy.com/WORDPRESS/wp-content/plugins/lazy-gallery/lazy-style.css
or :
/wp-content/plugins/lazy-gallery/lazy-style.css
Notice I just remove the period in front of /wp-content. I dont know where you need to change this cuz I dont use this plugin but chances are there is a config.php or settings.php file or something similiar. Its trying to pull the css file it needs but until the path is correct you’ll have this problem.
Rob
Forum: Plugins
In reply to: My Lazy gallery is being LAZYalright I think we might have hit paydirt. Looking at your source code you have 2 warnings:
<style type="text/css">
<br />
<b>Warning</b>: main(./wp-content/plugins/lazy-gallery/lazy-style.css): failed to open stream: No such file or directory in <b>/home/kayla/public_html/WORDPRESS/lazy-index.php</b> on line <b>11</b><br />
<br />
<b>Warning</b>: main(): Failed opening './wp-content/plugins/lazy-gallery/lazy-style.css' for inclusion (include_path='.:/usr/lib/php') in <b>/home/kayla/public_html/WORDPRESS/lazy-index.php</b> on line <b>11</b><br />
</style>Also, when I click your first thumbnail it takes me to the second larger version which does load but just isn’t visible. If I click on the second image it does load the full size pic in a new window as it should. So fix the path to your lazy gallery css file and you should be good to go.
Rob
Forum: Plugins
In reply to: My Lazy gallery is being LAZYI havent used Lazy Gallery but with my experience with other galleries it sounds as if you need to chmod (permissions) the cache folder(s) to 777. If that wont help then you probably need to check the file path.
Rob
Forum: Themes and Templates
In reply to: IE CSS Help – I’m on my hands and knees here!I think your problem might have more to do with the xhtml layout rather than css. If you look here:
https://validator.w3.org/check?verbose=1&uri=http%3A//www.22mike.com/blog/
You’ll see the doctype is not specified and so IE goes into “quirks mode” which can really screw up rendering. Try fixing the doctype. Its the first chunk of this code with should be in the theme’s “header.php”
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml"><head profile="https://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /><title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title>
Good luck,
Rob
Forum: Installing WordPress
In reply to: using WP as a store@Vkaryl- Thanks for the Cubecart tip, it is the most promising option i’ve seen yet in that price range;)
Forum: Fixing WordPress
In reply to: Has anybody a Blog-By-Email-setup??sorry, my bad I assumed you would be using it 4 pix ??
Forum: Fixing WordPress
In reply to: Has anybody a Blog-By-Email-setup??One way to go would be to use Flickr. You can post all your pix there and then pull them into your blog using the Flickr-rss plugin.
https://dev.wp-plugins.org/browser/flickr-rss/
just a thought in case you dont find a better way ??
rob
Forum: Fixing WordPress
In reply to: Meta ScriptHey Beel, I have been accused of overkill before;)
I think i’ll incorporate the php that you included in there….good idea.cheers,
robForum: Fixing WordPress
In reply to: Meta ScriptHere’s what ive been using based off of what ive read here and there. Keep in mind im not saying there is any need for the amount of tags and im surely not saying they even help. However, I feel they dont hurt so what the hell.
head profile="https://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /><title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title>
<meta http-equiv="Expires" content="0" />
<meta http-equiv="Window-target" content="_top" />
<meta http-equiv="imagetoolbar" content="no" />
<meta http-equiv="MSThemeCompatible" content="No" />
<meta name="Keywords" content="blah blah" />
<meta name="Description" content="blah blah" />
<meta name="language" content="U.S. English" />
<meta name="abstract" content="blah blah-- same as description" />
<meta name="author" content="your name" />
<meta name="Publisher" content="your name" />
<meta name="Publisher-Email" content="your [email protected]" />
<meta name="copyright" content="Copyright blah blah" />
<meta name="robots" content="all" />
<meta name="revisit-after" content="5 days" />
<meta name="Reply-to" content="your [email protected]" />
<meta name="document-class" content="Living Document" />
<meta name="document-classification" content="Entertainment" /><!-- change this probably -->
<meta name="document-rights" content="Copyrighted Work" />
<meta name="document-type" content="Public" />
<meta name="document-rating" content="General" />
<meta name="document-distribution" content="Global" />
<meta name="document-state" content="Static" />
<meta name="resource-type" content="document" />
<meta name="MSSmartTagsPreventParsing" content="true" />
<meta name="cache-control" content="no-cache" />
<meta name="pragma" content="no-cache" />
<meta name="URL" content="https://some.com/" />
<link rel="icon" href="your.png" type="image/png" />
<link rel="Shortcut Icon" type="image/ico" href="https://www.some.com/favicon.ico" /><meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats -->
Forum: Themes and Templates
In reply to: statistics xhtml 1.0 strictIve been using this with no problems:
Forum: Themes and Templates
In reply to: Valid XHTML 1.0 Strict!ok, I see….
I put my comments.php here:
if you think the problem is with this file, compare it to mine. Let me know if this helps.
Rob
Forum: Themes and Templates
In reply to: Valid XHTML 1.0 Strict!Dont worry, your english is fine;) Try taking out the last </div> before </body>. I did that and it validated. Also your comment form is okay so the problem is elsewhere.
so try changing:
<div class="clr"></div>
</div>
</body>
</html>to:
<div class="clr"></div>
</body>
</html>See if that helps.
Forum: Plugins
In reply to: Text in Entry shows a mouse over picture and links to a siteAfter opening acropop.php there is a chunk of code that looks like it might be manipulated to do what you want…
‘function acropop_replace($value)
{
return ‘\<img src=”‘ . $value . ‘” />‘;
}’Im just guessing but if you play with this you might be able to insert a link. I’m kind of interested in this as well now;)
I’ll play with it and if I get it to work i’ll post the code here. You might also want to email the author, chances are he will be of more assistance.
https://www.asymptomatic.net/wp-hacks
BTW, kickass site!
rob
Forum: Plugins
In reply to: Text in Entry shows a mouse over picture and links to a siteThere’s a plugin called Acropop that I think is supposed to display an image when you hover over links but i’m not sure what’s up with it as I havent used it. However you might want check it out:
Good Luck,
R