clay
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Menu on the topSun: I understood that is what you were asking and the google search I told you of will lead you in the right direction.
Forum: Everything else WordPress
In reply to: Bots, Hackers & CopyrightsAlso: for general information on turning away bots go to https://www.robotstxt.org
Forum: Everything else WordPress
In reply to: Bots, Hackers & CopyrightsYou could password protect your site using a .htaccess file.
Post the login information on the ‘gateway’ page so that a real human can access the site but bots will just go away.
Or forgo posting the login at all and only people you give the login can view the site.Forum: Themes and Templates
In reply to: Menu on the topDo a google search for “horizontal list items wordpress”
There are a few guides on there
I am currently working on a dynamic implementation of one of them using the admin panel to manage the menu itemsForum: Themes and Templates
In reply to: Site DesignWhat you need to do is start messing around with the wp-layout.css file. That is the file which controls the look of the site.
Make a backup first- then just start changing things around. If you aren’t too familiar with CSS check out some tutorials like at the https://www.w3schools.com
If you have dreamweaver or something like it with a CSS editor built in it can make things a little easier to see how they are laid out.
Once you get more familiar with CSS you will get some ideas and start obsessively tweaking it like me!Forum: Fixing WordPress
In reply to: — Help — PermalinksWhat was the problem?
If you could post an explanation it might help someone in the futureForum: Themes and Templates
In reply to: what resolution do you design for?Fluid designs can allow for different settings, but they can be a bit trickier. Well, to me they are. ??
I don’t even want to talk about it!Forum: Installing WordPress
In reply to: It doesn’t look like…..do you have the files in the right directories?
are all your paths correct?
it would seem to be 1 of thoseForum: Themes and Templates
In reply to: what resolution do you design for?I have been trying to use variable widths to accomodate down to 8×6
but I am used to a 21″ display set to 1280×1024
it’s a compromise..Forum: Fixing WordPress
In reply to: — Help — PermalinksDid you put the ifmodules around the rewrite rules?
`<ifmodule mod_rewrite.c>
RewriteEngine on
RewriteBase /YOURPATHHERE
ALL OF THE REWRITERULES
</ifmodule>’Forum: Themes and Templates
In reply to: The best designed WordPress powered sitesUgh. I spend all day redoing the CSS for my site. I start to think ‘hey it’s starting to look OK’
then I look at some of these.
ugh.Forum: Fixing WordPress
In reply to: link to a different templateWhat you want to do sounds similiar to how I have my site set up. I have seperated the standard index.php into header and footer files so that I can make ‘static’ pages.
(Keep in mind I have tags in these that are specific to my site)
Header.php:
<?php
/* Don't remove this line. */
require('./wp-blog-header.php');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head profile="https://gmpg.org/xfn/1">
<title><?php bloginfo('name'); ?><?php wp_title(); ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=<?php bloginfo('charset'); ?>" />
<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats -->
<style type="text/css" media="screen">
@import url( <?php echo get_settings('siteurl'); ?>/wp-layout.css );
</style>
<link rel="stylesheet" type="text/css" media="print" href="<?php echo get_settings('siteurl'); ?>/print.css" />
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php wp_get_archives('type=monthly&format=link'); ?>
<?php //comments_popup_script(); // off by default ?>
<?php wp_head(); ?>
</head>
<body>
<div id="rap">
<h1 id="header">"><?php bloginfo('name'); ?></h1>
<div id="content">
Footer.php:
</div>
<div id="menu">-
<li id="categories"><?php _e('Categories:'); ?>
-
<?php wp_list_cats(); ?>
<li id="search">
<label for="s"><?php _e('Search:'); ?></label>
<form id="searchform" method="get" action="<?php echo $PHP_SELF; ?>">
<div>
<input type="text" name="s" id="s" size="15" /><input type="submit" name="submit" value="<?php _e('Search'); ?>" />
</div>
</form><li id="archives"><?php _e('Archives:'); ?>
-
<?php wp_get_archives('type=monthly'); ?>
<li id="calendar">
<?php get_calendar(); ?><li id="other"><?php _e('Other:'); ?>
<li id="meta"><?php _e('Meta:'); ?>
- " title="<?php _e('Syndicate this site using RSS'); ?>"><?php _e('RSS 2.0'); ?>
- " title="<?php _e('The latest comments to all posts in RSS'); ?>"><?php _e('Comments RSS 2.0'); ?>
- "><?php _e('Valid XHTML'); ?>
- <!--<?php echo $wpdb->num_queries; ?> queries. <?php timer_stop(1); ?> seconds. --> <cite><?php echo sprintf(__("Powered by WordPress
Designed by A Daily Adventure"), __("Powered by WordPress, state-of-the-art semantic personal publishing platform")); ?></cite>
</div>
</div></body>
</html>
And then any page I want to create is only 3 lines of code:
Index.php:
<?php include('wp-includes/header.php') ?>
<?php include('wp-includes/posts.php') ?>
<?php include('wp-includes/footer.php') ?>
My resume and links page use this method.
You could create a new page: newpage.php
and have the code:
<?php include('wp-includes/header.php') ?>
<?php include('wp-includes/NEWTEMPLATE.php') ?>
<?php include('wp-includes/footer.php') ?>
If you want a completely different look for that page, just create a new header file and use a different CSS file for it.
<?php include('wp-includes/NEWHEADER.php') ?>
<?php include('wp-includes/NEWTEMPLATE.php') ?>
<?php include('wp-includes/footer.php') ?>
Create whatever CSS you want for NEWHEADER.phpForum: Plugins
In reply to: New 3 Column StyleI think I am bordering on CMS at this point!
Forum: Your WordPress
In reply to: Hacked Links Page- 3 Column Layoutif anyone is interested in how it works feel free to aim me at adailyadventure
Forum: Fixing WordPress
In reply to: another .htaccess questionWhat are the permissions for your files and directories?
403 errors are generally related to file permissions, if the site admins had disabled the rewrite engine or something similiar, you would most likely get a 500 server error. I think.
Are you using virtual hosting?
Check your rewrite base path.. play around with it and see what changes it makes.. you may need to add something like /home/palimpset. But if you are getting a 403 I don’t think this is it.
Check your file/directory permissions