MaddTechWF
Forum Replies Created
-
Forum: Plugins
In reply to: Custom MetaboxesAfter looking over my code for 2 hours, I finally found it.
Previous Code:
function add_portfolio_boxes() { add_meta_box('metabox','Technology Used','Technology_Used_meta','portfolio','side','default'); add_meta_box('metabox','Website URL','Website_URL_meta','portfolio','side','default'); add_meta_box('metabox','Testimonial','Testimonial_meta','portfolio','normal','high'); }Fixed Code:
function add_portfolio_boxes() { add_meta_box('Technology_Used_meta','Technology Used','Technology_Used_meta','portfolio','side','default'); add_meta_box('Website_URL_meta','Website URL','Website_URL_meta','portfolio','side','default'); add_meta_box('metabox','Testimonial','Testimonial_meta','portfolio','normal','high'); }Forum: Themes and Templates
In reply to: Post TemplatesAwesome. Thanks Chip. Appreciate the quick help.
Forum: Themes and Templates
In reply to: Post TemplatesSo how would it know to use the single-portfolio.php page to load my individual portfolio items????
Forum: Themes and Templates
In reply to: Post TemplatesHey Chip,
My portfolio is currently setup to pull based off of a custom post type called “Portfolio”.
Forum: Themes and Templates
In reply to: Navigation Background MissingYou need to set the background for you selected menu item to be a certain color.
Forum: Themes and Templates
In reply to: Alternating div's for postsCurrent code. I want to show 2 posts per row.
<?php if(have_posts()) : while(have_posts()) : the_post(); ?> <div class="posts"> <div class="row"> <div class="first"> <h2><?php the_title(); ?></h2> <?php the_content(); ?> </div> <div class="second"> <h2><?php the_title(); ?></h2> <?php the_content(); ?> </div> </div> </div> <?php endwhile; endif; ?>Forum: Themes and Templates
In reply to: Div Top PaddingOkay,
So I have this code.
<!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=utf-8" /> <title>Test 2.0</title> <link rel="stylesheet" type="text/css" href="960.css"/> <link rel="stylesheet" type="text/css" href="style.css"/> </head> <body id="page-post"> <div id="page" class="container_12"> <div id="header_wrap"> <h1 id="logo"></h1> <div id="menu_wrapper"> <ul id="menu"> <li><a href="#" class="current">Home</a></li> <li><a href="#">About</a></li> <li><a href="#">Services</a></li> <li><a href="#">Portfolio</a></li> <li><a href="#">Contact Us</a></li> </ul> </div> </div> </div> </body> </html>CSS
#home { background: #fff url('images/home-bg.gif') repeat-x; } #page-post { background: #fff url('images/post-page-bg.gif') repeat-x; } #header_wrap, #featured_wrap, #footer, #main_content_inner, #title_wrap_inner, .center_wrap, .title_wrap { width:960px; margin:0 auto; } *Menu Style*/ #menu_wrapper { float:right; width:74%; } #menu { padding-left:36px; padding-bottom:0; } #menu li { list-style:none; display:inline; margin-left:0px; } #menu li a { font:14px Arial, Helvetica, sans-serif; color:#fefefe; text-decoration:none; padding:16px 16px 16px 16px; display:block; float:left; } #menu li a:hover { color:#adcdca; padding:16px 16px 16px 16px; } #menu li a.current { color:#adcdca; border-top:4px solid #adcdca; padding:12px 16px 16px 16px; } ul#menu li.current_page_item a { color:#adcdca; border-top:4px solid #adcdca; padding:12px 16px 16px 16px; }I want the blue bar that shows that a menu item is selected to be all the way to the top of the browser window.
I went into the database and manually assigned the images that I wanted.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Integration with YoastNicksmarto,
Did you figure out how to do this yet? I too am wanting to do this.
Forum: Plugins
In reply to: User Role modification@nv1962 thank you for the suggestion of Members. That is exactly what I was looking for. I greatly appreciate it.
Forum: Everything else WordPress
In reply to: Basecamp CloneBrad,
Thanks for the plugin recommendation. I will have to give it a look over. I was googling Client Portals when I got your email. Do you happen to know of anything that would give me the ability to have a “client” section where people could login and find documents, files, etc that I have posted up for them?Forum: Themes and Templates
In reply to: Client Portal IdeaI would like them to be client specific based on their login to the site.
Forum: Plugins
In reply to: Looking for a Calendar PluginOther than that I can’t really think of any other item that it might need.
Forum: Plugins
In reply to: Looking for a Calendar PluginI would say to possibly add the feature to click a button in the post/page page for a quick add for the non-technical people.
Forum: Plugins
In reply to: Looking for a Calendar PluginSo sorry WebJunk. I read it right after my post and saw that. I really appreciate your patience and help.
Thanks.