thelittlestgiant
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Front end user text blocks that compile to a documentHey Topher!
Editable blocks are not needed. Just selecting from options that are then compiled. Output to an editable document would be great tho. So, docx or google doc.
Forum: Fixing WordPress
In reply to: next/previous posts link – category childrenBump… I need this too. Anyone have any ideas?
Thanks 🙂
Forum: Fixing WordPress
In reply to: Root directory install – wordpress directory files all visibleThe learning never ceases…
I just learned(for anyone out there w/ apache webserver…) that to turn off the directory browsing you can insert “Options -Indexes” (without quotes) into your .htaccess file
Forum: Fixing WordPress
In reply to: Root directory install – wordpress directory files all visiblegracias 🙂
Forum: Themes and Templates
In reply to: 2 Columns postsBumping this up with a question…
I have this working pretty well. Michael, thanks for this very cool code.
I’m a newbie to this… The only issue is that when I click on a post to bring it to a single page, I’d like it to apply a different css division id, so that the post isn’t spread out as wide on the page…
What code modification, and where do I place it, for the single page, search, etc. to use a div id ie: “singlecolumn”
I have my code existing as follows:
<?php if (! (is_search() or is_page() or is_single() or is_archive() or is_404()) ) {
switch ($post) {
case $posts[0]:
echo “<div id=’column1′>”;
break;
case $posts[2]:
echo “</div>”;
echo “<div id=’column2′>”;
break;
} // switch
} ?>