pat7047
Forum Replies Created
-
Forum: Plugins
In reply to: [YITH WooCommerce Product Gallery & Image Zoom] Zoomed image is tiled@larsactionhero That works! Thank you so much! Definitely agree that the developer should fix this, or at the very least make this “work around” known. Thanks again!
Forum: Plugins
In reply to: [YITH WooCommerce Product Gallery & Image Zoom] Zoomed image is tiledSame here. I’ve tried reuploading the same exact images from previous WooCommerce products I have (and the zoom works just fine). The zoom works just fine with old images I uploaded a few months ago, but any new images I uploaded, they appear tiled.
Forum: Fixing WordPress
In reply to: Anyone know what this error means?Sorry about that. The website is https://pinglio.com, but you’ll run into my redirect.
For an example of what I’m referring to, try my WP login page at https://pinglio.com/wp-login.php
Forum: Fixing WordPress
In reply to: My WordPress Was HackedThanks esmi! Very helpful links.
Forum: Fixing WordPress
In reply to: margin-top added to html and body tags after upgrade to 3.1!?!@kirkmc Thanks to you and everyone in this thread! I was getting so frustrated trying to figure out where “
html { margin-top: 28px !important; }
” was coming from!Forum: Fixing WordPress
In reply to: Accidentally Deleted /wp-includesAwesome! Thanks! You saved me $13!
Forum: Fixing WordPress
In reply to: Change Width of a Single PostAh. I figured it out. For anyone else who cares to know, I added this to my single.php:
<?php if ( is_single() ) { ?> <style type="text/css" media="screen"> #content { margin:0 0 0 0 !important; padding:10px 20px 0px 0; } </style> <?php } ?>
Thanks for your help, Ramzii!
Pat
Forum: Fixing WordPress
In reply to: Change Width of a Single PostThanks for the suggestion Ramzii. However, that would require me alter each single post manually. I want to create something in single.php that will automatically set the width in a single post to expand fully.
I was thinking using a php If statement in my single.php file:
<?php if ( is_single() ) { ?> <?php } ?>
However I don’t know what to put in between the If statement. I was thinking some kind of CSS that would say “set width to 0”.
Any ideas?
Forum: Fixing WordPress
In reply to: Change Width of a Single PostThanks Ramzii. Thanks for the suggestion about Firebug. That add-on is awesoeme!
You were definitely on to something with the
#content { margin:0 200px 0 0 !important;
I tried messing with the margin numbers. I noticed that if I leave them all at 0 it’s exactly what I want. However, I only want to apply
#content { margin:0 0 0 0 !important;
to single post pages. Not the index.php.
Any suggestions for separating the code? One for single posts and one for the index.php ? Thanks again. You’ve been so helpful.
Forum: Fixing WordPress
In reply to: Change Width of a Single PostThanks for your replies govpatel and Ramzii.
I want each single post page (this, past, and future posts) to be formatted with a greater width. Not just that single post. Any other ideas?