eldeuce
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How do I increase main/body text size?add
.entry p { font-size: 14px; }to your CSS and see if that helps.
Forum: Fixing WordPress
In reply to: Display Post in a Pagewow, this plugin looks like it would have worked. Too bad for them because I left that job and now they’ll never know. 🙂
Forum: Fixing WordPress
In reply to: Ugly Text – JaggedAll text looks fine to me. Maybe it’s a personal setting?
I’m using FireFox 2
Forum: Fixing WordPress
In reply to: Left Justify Page TitleLook in the css and do text-align: left; on that element.
or post a link and i can show you which elementForum: Fixing WordPress
In reply to: Site description not showing up on GoogleI have
http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/and have none of these issues.
Forum: Fixing WordPress
In reply to: Change bulletsSure is, but it’s through CSS
http://www.w3schools.com/css/pr_list-style-type.asp
Is a quick reference, but you can also use images as well. Just need to do some research on CSS LIST-STYLE-TYPE
Forum: Fixing WordPress
In reply to: Move sidebar from right to leftWell, I didn’t dig too deep, but you’ll want to edit the stylesheet.
#sidebar you want to change it to
float: left;and
#content changed tofloat: right;in your code you’ll want the #sidebar called before the #content.
then on #page you’ll want to change it to
background:transparent url(images/content-bg.gif) repeat-y scroll left center;Hope that helps.
Forum: Fixing WordPress
In reply to: Includes and Conditional Statementsthe get_template_directory() was ace!
thanks for the help, again!! 😀
Forum: Fixing WordPress
In reply to: Includes and Conditional StatementsI use both form.php and mail.php – this one just happened to be named mail.php, sorry.
i took it out of the includes folder, in hopes that it might help… no such luck.
I verified that the mail.php is uploaded, so that shouldn’t be the issue. Why else would it fail to open?
Forum: Fixing WordPress
In reply to: Includes and Conditional StatementsYour code leaves me with
Parse error: parse error, unexpected '<' in /homepages/6/d214241798/htdocs/3dss/wp-content/themes/3dss/index.php on line 17if I change it to
if (is_page('3')) { include (bloginfo('template_directory').'/mail.php'); }then at least the site shows up but I get
Warning: main(/mail.php) [function.main]: failed to open stream: No such file or directory in /homepages/6/d214241798/htdocs/3dss/wp-content/themes/3dss/index.php on line 17 Warning: main() [function.include]: Failed opening '/mail.php' for inclusion (include_path='.:/usr/local/lib/php') in /homepages/6/d214241798/htdocs/3dss/wp-content/themes/3dss/index.php on line 17Forum: Fixing WordPress
In reply to: find what page I’m onI just used
is_page('home')and this works. I’ll just stick with this.
Thanks for the help.Forum: Fixing WordPress
In reply to: find what page I’m onI keep talking too soon.
Once I change the else statement to your way of writing it, it stops doing the correct header for the home page, now ever the home page has the secondary header.….
<?php if (is_home()) { echo '<h2 id="idxhdr">Home Page</h2> '; } else { echo '<h2>'; the_title(); echo '</h2>'; } ?>Forum: Fixing WordPress
In reply to: find what page I’m onWorked like a champ.
Thanks for your help. Those conditional statements have come in very handy for putting embedded video on certain pages (the code box wouldnt let me paste the code) and then i would able to php include forms on certain pages.Site is finally coming together… only took me 5 hours so far.
Forum: Fixing WordPress
In reply to: find what page I’m onMaybe I spoke too soon.
I have<?php if (is_home()) { echo '<h2 id="idxhdr">Welcome to the site</h2> ; } else { echo '<h2>' . the_title() . '</h2>'; } ?>but when it parses, i get
Page Title<h2></h2>Any idea what I did wrong?
Forum: Fixing WordPress
In reply to: find what page I’m onYou made this way too easy 🙂