lokrin2000
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Help finding new WordPress TemplateFor some reason copy-paste was messing up on my end and I tried about 5 times to get that text right. Glad you managed it.
I’ve tried playing with your CSS and haven’t been able to centre the links. Maybe someone else can do better.
Forum: Themes and Templates
In reply to: Help finding new WordPress TemplateFind your header.php file and replacewith this. I moved the navigation to below the banner.
<head profile="http://gmpg.org/xfn/11"> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> <title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> » <?php _e('Blog Archive','ml');?> <?php } ?> <?php wp_title(); ?></title> <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats --> <meta name="keywords" content="<?php bloginfo('description'); ?>" /> <meta name="description" content="<?php bloginfo('description'); ?>" /> <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" /> <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> <?php _e('RSS Feed','ml');?>" href="<?php bloginfo('rss2_url'); ?>" /> <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> <?php global $page_sort; if(get_settings('mistylook_sortpages')!='') { $page_sort = 'sort_column='. get_settings('mistylook_sortpages'); } global $pages_to_exclude; if(get_settings('mistylook_excludepages')!='') { $pages_to_exclude = 'exclude='. get_settings('mistylook_excludepages'); } ?> <?php wp_head(); ?> </head> <body id="section-index"> <div id="container"> <div id="header"> <h1><a href="<?php bloginfo('siteurl');?>/" title="<?php bloginfo('name');?>"><?php bloginfo('name');?></a></h1> <p id="desc"><?php bloginfo('description');?></p> </div><!-- end id:header --> <div id="feedarea"> <dl> <dt><strong><?php _e('Feed on','ml');?></strong></dt> <dd><a href="<?php bloginfo('rss2_url'); ?>"><?php _e('Posts','ml');?></a></dd> <dd><a href="<?php bloginfo('comments_rss2_url'); ?>"><?php _e('Comments','ml');?></a></dd> </dl> </div><!-- end id:feedarea --> <div id="headerimage"> </div><!-- end id:headerimage --> <div id="navigation"> <ul> <li <?php if(is_home()){echo 'class="current_page_item"';}?>><a href="<?php bloginfo('siteurl'); ?>/" title="<?php _e('Home','ml');?>"><?php _e('Home','ml');?></a></li> <?php wp_list_pages('title_li=&depth=1&'.$page_sort.'&'.$pages_to_exclude)?> <li class="search"><form method="get" id="searchform" action="<?php bloginfo('home'); ?>"><input type="text" class="textbox" value="<?php echo wp_specialchars($s, 1); ?>" name="s" id="s" /><input type="submit" id="searchsubmit" value="<?php _e('Search','ml');?>" /></form></li> </ul> </div><!-- end id:navigation -->Forum: Themes and Templates
In reply to: Need help with CSS again! :)Try adding:
form {background-color: #FFF;}
Forum: Plugins
In reply to: Any coders out there want to see if you can figure this one out???!!!!How about a website url?
Forum: Themes and Templates
In reply to: Having abit of troubleYou may need to drop that last </div> … ?
Forum: Themes and Templates
In reply to: Having abit of troubleIn your theme folder- Find page.php
At the bottom add these three lines above the last line:
<?php get_sidebar();?> <div class="clear"></div> </div>so it looks like this:
<?php get_sidebar();?> <div class="clear"></div> </div> <?php get_footer();?>Hopefully that will work.
Forum: Themes and Templates
In reply to: Having abit of troubleComments:
Admin > Settings > Discussion
Near the top is
Allow people to post comments on new articles
Uncheck that.
Forum: Themes and Templates
In reply to: question layout#2 I don’t see the white box on my site. Did you customize the css?
How about a link to your site?
Forum: Themes and Templates
In reply to: question layout#3. Go into the theme folder. Go into the images folder. Upload your ad images here. Name them something like:
ad1.jpg
ad2.jpgor
cars.jpg
baseball.jpgWhatever.
go back to the main theme folder and edit adspot.php
You need to tell it the image name and the url.
Forum: Themes and Templates
In reply to: background image problemDISCLAIMER: I ain’t no expert!
I noticed the following in your css file:
#header {
/*background-color: #73a0c5;*/
margin: 0 0 0 1px;
padding: 0;
height: 200px;
width: 758px;
}Try this and see if it works:
background-color: transparent;
Forum: Fixing WordPress
In reply to: How to set how many posts per page?Go to
Admin > Settings > Reading
Blog pages show at most _____ posts
Fill the box in with the number 5.
Forum: Plugins
In reply to: graphical letters “human user” security function as plugin?Try this link for captcha plugins
Forum: Fixing WordPress
In reply to: How do I get API keyRegistering does NOT mean you are registering for a new site there. You are just registering as a user and will receive your API.
Forum: Plugins
In reply to: Where do I put this snippet I found.Yes. Yes it is.
This is a forum. It is not an Instant Messenger. You may have to wait a day or two for an answer.
I’m not good at php and I don’t know your theme so I can’t help.
I find it easiest to subscribe to rss feeds here so I can see when people post answers to my questions.
Forum: Plugins
In reply to: Sticky FooterLooking at view source for the page and following the links at the bottom shows what to me looks like a custom plugin or just an added JavaScript. It looks simple enough to copy but has several files involved. However, since its not “published” I’d really feel wrong about using it.
I would suggest emailing the blog author and talking to them. Maybe they would help you or even publish the code for others.