pokepsw
Forum Replies Created
-
It is a self hosted wordpress.org install. WordPress 4.2.3
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Removing Default Text in Input BoxesEsmi, I actually think it was an external script I had for something else. I’ve looked at all relevant CF7 files and there is nothing.
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Removing Default Text in Input BoxesIts definitely not the value field as that is empty. When I click inside a input box, the form automatically deletes the text thats in there. When I click outside, the text comes back. Can anyone please help?
Forum: Plugins
In reply to: Alternative to TDO Mini Forms for Visitor Uploading Post & ImgBump for help please 🙁
Forum: Plugins
In reply to: How to automatically show custom fields in Add New Post?I found one solution which works very well – any other ways I missed?
Forum: Fixing WordPress
In reply to: Fonts are HUGE in IE but fine in Safari/FF/ChromeOh yeah thats it, thanks so much really appreciate it!
Forum: Fixing WordPress
In reply to: Adding PHP to Header changes functionalityIridiax – I checked the errors, but they’re not really errors. The errors came back for having PHP code inside an <img src=”…”> tag and for not closing divs (they close outside of header.php). For example, the div “container” starts in the header.php and ends in the body of index.php. Any other ideas?
Forum: Fixing WordPress
In reply to: Adding PHP to Header changes functionalityShameless Bump
Forum: Fixing WordPress
In reply to: Adding PHP to Header changes functionalityHas anyone else had this sort of problem?
Forum: Fixing WordPress
In reply to: Adding PHP to Header changes functionalityI did, I put it right before </head> Header PHP Code below:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Justin Cener Design</title> <link rel="shortcut icon" href="http://www.justincener.com/images/favicon.ico" > <link rel="stylesheet" type="text/css" href="http://www.justincener.com/css.css" media="screen" /> <!--[if IE]> <style type="text/css">@import "http://www.justincener.com/IE-override.css";</style> <![endif]--> <script type='text/javascript' src='<?php bloginfo('stylesheet_directory'); ?>/jquery-1.2.6.min.js'></script> <script type='text/javascript' src='<?php bloginfo('stylesheet_directory'); ?>/kwicks.js'></script> <script type='text/javascript' src='<?php bloginfo('stylesheet_directory'); ?>/custom.js'></script> <?php wp_head(); ?> </head> <body> <div id="container"> <div id="header"> <div id="menu"> <ul class="kwicks"> <li id="kwick1"><a href="http://www.justincener.com/">Home</a></li> <li id="kwick2"><a href="http://www.justincener.com/services">Services</a></li> <li id="kwick3"><a href="http://www.justincener.com/portfolio">Portfolio</a></li> <li id="kwick4"><a href="http://www.justincener.com/blog">Blog</a></li> <li id="kwick5"><a href="http://www.justincener.com/contact/">Contact</a></li> </ul> </div><!--end menu--> <center><img src="http://justincener.com/images/logo.gif" height="172" width="551" alt="Justin Cener New Jersey Web and Graphic Design" /></center> </div><!--end header-->equaldesign – Thanks for the reply. Here is my problem. I put the code in a php file, created a page, and used as the php file as a page template. Here is the code:
<!-- Start the Loop. --> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <!-- The following tests if the current post is in category 3. --> <!-- If it is, the div box is given the CSS class "post-cat-three". --> <!-- Otherwise, the div box will be given the CSS class "post". --> <?php if ( in_category('3') ) { ?> <div class="post-cat-three"> <?php } else { ?> <div class="post"> <?php } ?> <!-- Display the Title as a link to the Post's permalink. --> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <!-- Display the Time. --> <small><?php the_time('F jS, Y'); ?></small> <!-- Display the Post's Content in a div box. --> <div class="entry"> <?php the_content(); ?> </div> <!-- Display a comma separated list of the Post's Categories. --> <p class="postmetadata">Posted in <?php the_category(', '); ?></p> </div> <!-- closes the first div box --> <!-- Stop The Loop (but note the "else:" - see next line). --> <?php endwhile; else: ?> <!-- The very first "if" tested to see if there were any Posts to --> <!-- display. This "else" part tells what do if there weren't any. --> <p>Sorry, no posts matched your criteria.</p> <!-- REALLY stop The Loop. --> <?php endif; ?>I left out the header and footer, but thats the loop. For some reason, the page is only showing the page title, the date, and “posted in uncategorized.” Whats going on? Is it because I’m using this as a page template?
Forum: Themes and Templates
In reply to: Hover Navigation –> Underlined/Differenct Color Active Page?Esmi, what do you mean move the block down? Move the actual CSS to the bottom of the CSS doc?
Forum: Themes and Templates
In reply to: Hover Navigation –> Underlined/Differenct Color Active Page?Any ideas?
Forum: Themes and Templates
In reply to: Hover Navigation –> Underlined/Differenct Color Active Page?This is the entire CSS
body {margin:0;padding:0} #header {background:#202225;width:100%;height:80px} #header .widthlimiter div {float:right;color:#63A9D5;font:italic bold 1em/80px sans-serif;} #search {display:inline} #description {display:inline;margin-right:1em} .widthlimiter {min-width:600px;max-width:1000px;width:90%;margin:0 auto} #menu {width:100%;background:#63A9D5;height:2em} /* NAVIGATION BAR - for an easy way to restyle this, visit ... http://ryanhellyer.net/dropdowns/ */ #suckerfish {background:#63A9D5;font-size:18px;font-family:helvetica,sans-serif;font-weight:bold} #suckerfishnav, #suckerfishnav ul {font-weight:bold;float:left;list-style:none;line-height:2em;padding:0;border:0px solid #aaa;margin:0 0 0 0;width:100%} #suckerfishnav a {display:block;color:#202225;text-decoration:none;padding:0px 10px} #suckerfishnav li {float:left;padding:0} #suckerfishnav li ul {position:absolute;left:-999em;height:auto;width:150px;font-weight:normal;margin:0;line-height:1} #suckerfishnav li li {padding-right:1px;width:150px;border-left:1px solid #aaa;border-right:1px solid #aaa;border-bottom:1px solid #aaa} #suckerfishnav li li a {padding:4px 10px;width:150px} #suckerfishnav li ul li {font-weight:normal; font-family:helvetica,sans-serif} #suckerfishnav li ul li a {font-size:12px; color:#202225} #suckerfishnav li:hover ul li a {color:#202225} #suckerfishnav li ul ul {margin:-20px 0 0 150px} #suckerfishnav li ul li:hover {background:#63A9D5} #suckerfishnav li ul li:hover a {color:#202225} #suckerfishnav li ul li:hover li a {color:#202225} #suckerfishnav li ul li li:hover a {color:#202225} #suckerfishnav li ul li ul li:hover ul li a {color:#202225} #suckerfishnav li ul li ul li:hover ul li:hover a {color:#202225} #suckerfishnav li:hover ul ul, #suckerfishnav li:hover ul ul ul, #suckerfishnav li.sfhover ul ul, #suckerfishnav li.sfhover ul ul ul {left:-999em} #suckerfishnav li:hover ul, #suckerfishnav li li:hover ul, #suckerfishnav li li li:hover ul, #suckerfishnav li.sfhover ul, #suckerfishnav li li.sfhover ul, #suckerfishnav li li li.sfhover ul {left:auto;background:#fff} #suckerfishnav li:hover, #suckerfishnav li.sfhover {background:#fff} #suckerfishnav li:hover a, #suckerfishnav li.sfhover a {color:#202225} #suckerfish .current_page_item {background:#fff} /* MAIN CONTENT STYLING */ #content {} h1,h2,h3,h4,h5 {color:#63A9D5} h1 a,h2 a,h3 a,h4 a,h5 a {color:#63A9D5;text-decoration:none} h1 a:hover,h2 a:hover,h3 a:hover,h4 a:hover,h5 a:hover {text-decoration:underline} h1 {margin:0;padding:0;font:normal bold 3em/80px sans-serif} h2 {font:normal bold 2em sans-serif;margin:0.5em 0} h3 {font:normal bold 1.6em sans-serif;margin:0.4em 0} h4 {font:normal bold 1.3em sans-serif;margin:0.3em 0} h5 {font:normal bold 1.2em sans-serif;margin:0.2em 0} p {font:normal 0.8em sans-serif;color:#202225} p a {color:#63A9D5;text-decoration:none} p a:hover {text-decoration:underline} ul li, ol li {font-family:sans-serif;color:#202225} /* FOOTER STYLING */ #footer {background:#202225;width:100%;height:2em} #footer p {font-size:0.8em;line-height:2em;color:#fff} #footer a {color:#63A9D5;text-decoration:none} #footer a:hover {text-decoration:underline}Forum: Themes and Templates
In reply to: Hover Navigation –> Underlined/Differenct Color Active Page?Thanks, but that didn’t work.