popper
Forum Replies Created
-
Forum: Themes and Templates
In reply to: 2 column copy block, or change post column widthA pretty easy solution is to use css3 multiple columns, but, be aware that it won’t work on older browsers and IE.
Forum: Localhost Installs
In reply to: wordpress local host file is not popping upWhich url are you accessing?
Forum: Fixing WordPress
In reply to: How to add a new image to an existing slideshow?That looks like either: a. a plugin b.some custom coding in the theme. Does the blog have any plugins installed? If so, look for anything slider-y, most have an options page to set what displays there: which posts, categories, etc.
Forum: Plugins
In reply to: how to display recent/full posts from another blogYou could try fetching the feed of the blog.
Forum: Fixing WordPress
In reply to: PHP IF help?Can you show us your code? I know you said you’re using the one Josh provided but sometimes the devil is in the details :).
Forum: Fixing WordPress
In reply to: .htaccess edit malfunctionI think removing/commenting out that line should do it, but, I highly suggest you download a copy of the .htaccess first, edit it, and then re-upload it. That way, if something doesn’t work, you’ll just need to re-upload the original again. ??
Forum: Themes and Templates
In reply to: Need help fixing the background for the commentsThe class that makes ’em switch back and forth is this one:
table tr.alt td { background: #f5f5f5; }
in line
1929
of yourdefault.css
.You can either remove/overwrite that styling or look into the template for the profile and remove the class from the even rows of the table.
Forum: Themes and Templates
In reply to: Need help fixing the background for the commentsYou were right, it is ul.children. Specifically, you want to change this class:
commentlist ul.children
in line 776 on your default.css. If you remove this line:background: #f5f5f5;
You should see the blue background the parent comment has.
Forum: Fixing WordPress
In reply to: Cannot link to my css fileKeep in mind that paths are case sensitive, so Images is different than images. Other than that, if you have a css file inside a folder, say, css and the images folder is not inside that same folder, you need to go up one directory: url(../images/etc):
Theme --images --css
Forum: Fixing WordPress
In reply to: Parse error… Please helpGlad you solved it!
Forum: Fixing WordPress
In reply to: Parse error… Please helpSure! Notepadd++ is pretty decent, and free. Sublime Text 2 is not free, but it includes and unlimited trial. There are a lot more, but it depends on your platform.
Forum: Fixing WordPress
In reply to: Fatal Error – Need Help!!Yes! Connect through filezilla and upload the files (drag and drop or double click), just as when you installed wordpress, except wp-content.
Forum: Fixing WordPress
In reply to: Fatal Error – Need Help!!You’re missing a file. Try re-uploading all files & folders – except the wp-content folder – from a fresh download of WordPress.
Forum: Fixing WordPress
In reply to: Blending the footer and sidebar.It is possible using box-shadow. It won’t work on older browsers, though.
Forum: Fixing WordPress
In reply to: Parse error… Please helpThen you just have a syntax error. Open the file theme-options.php, go to the line 81 and look for an unescaped string, missing semicolon, etc. If you open the file with an editor with syntax highlighting you’ll spot the issue right away.