David Lassiter
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to fix my site from looking gray in IE and Chrome.I figured out what I had to do.
Forum: Fixing WordPress
In reply to: How to fix my site from looking gray in IE and Chrome.The rounded edges are that big of an issue, just though to bring it up with this post. Also is the issue with the code or the browser regarding the color issues?
Forum: Fixing WordPress
In reply to: Changing Permalink StructureWhere would I go to find that (besides emailing C.S.)
I use Ipage is my host, there is an .htaccess editor
but can’t see, to find any place to put the permalink code<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L]
Forum: Fixing WordPress
In reply to: Changing Permalink Structureyeah did that but when I do that I get a 404 error for every page beside the home page
Forum: Fixing WordPress
In reply to: Changing Permalink StructureYeah I did read it, and I’m still not sure what I’m doing or where to start.
Forum: Fixing WordPress
In reply to: How to remove double spacingThe plug in doesn’t seem to do anything and and everything else I do removes the double spacing but also removes any spacing.
I want it too look like this
Test line one.
Test line two.But it ends up like
Test line one. Test line two.
Forum: Fixing WordPress
In reply to: How to add a logo image in the tabOK it’s been about a week and it still hasn’t been added.
Here is my header.php file to see if I but the code in the wrong place
the<link rel="shortcut icon" type="image/x-icon" href="www.chibigamers.com/favicon.ico">
code is right below the<head>
tag<!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <link rel="shortcut icon" type="image/x-icon" href="www.chibigamers.com/favicon.ico"> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type') ?>; charset=<?php bloginfo('charset') ?>" /> <title><?php if (is_home () ) { bloginfo('name'); } elseif (is_category() ) { echo 'ChibiGamers - Updates Mondays and Thursdays - Archive For '; single_cat_title(); } elseif (is_single() || is_page() ) { echo 'ChibiGamers - Updates Mondays and Thursdays - '; single_post_title(); } elseif (is_search() ) { echo __(' search results: ','comicpress'); echo esc_html($s); } else { echo ' - '; wp_title('',true); } ?></title> <link rel="stylesheet" href="<?php echo get_stylesheet_uri(); ?>" type="text/css" media="screen" /> <link rel="pingback" href="<?php bloginfo('pingback_url') ?>" /> <meta name="ComicPress" content="<?php echo comicpress_themeinfo('version'); ?>" /> <!--[if lt IE 7]> <script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/js/ie6submenus.js"></script> <![endif]--> <?php wp_head(); ?> </head> <body <?php body_class(); ?>> <?php if (is_active_sidebar('above-header')) get_sidebar('above'); ?> <div id="page-head"></div> <?php if (!comicpress_themeinfo('disable_page_restraints')) { if (is_cp_theme_layout('standard,v')) { ?> <div id="page-wrap"><!-- Wraps outside the site width --> <div id="page"><!-- Defines entire site width - Ends in Footer --> <?php } else { ?> <div id="page-wide-wrap"><!-- Wraps outside the site width --> <div id="page-wide"><!-- Defines entire site width - Ends in Footer --> <?php } } ?> <div id="header"> <?php do_action('comicpress-header'); ?> <h1><a href="<?php echo home_url(); ?>"><?php bloginfo('name') ?></a></h1> <div class="description"><?php bloginfo('description') ?></div> <?php if (is_active_sidebar('header')) get_sidebar('header'); ?> <div class="clear"></div> </div> <?php if (!comicpress_themeinfo('disable_default_menubar')) comicpress_menubar(); if (is_active_sidebar('menubar')) get_sidebar('menubar'); get_template_part('layout', 'head'); ?>
Forum: Fixing WordPress
In reply to: How to add a logo image in the tabOK good I just wanted to make sure because it said it could take a day or so to show up.
Forum: Fixing WordPress
In reply to: How to add a logo image in the tabDo I place the code they gave me in header.php or the style.css file page?
Forum: Fixing WordPress
In reply to: Duble title tag in home pageOK good that all worked
Forum: Fixing WordPress
In reply to: Duble title tag in home pageok then
<!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type') ?>; charset=<?php bloginfo('charset') ?>" /> <title><?php bloginfo('name'); if (is_home () ) { echo ' - '; bloginfo('ChibiGamers - Updates Mondays and Thursdays'); } elseif (is_category() ) { echo ' - '; single_cat_title(); } elseif (is_single() || is_page() ) { echo ' - '; single_post_title(); } elseif (is_search() ) { echo __(' search results: ','comicpress'); echo esc_html($s); } else { echo ' - '; wp_title('',true); } ?></title> <link rel="stylesheet" href="<?php echo get_stylesheet_uri(); ?>" type="text/css" media="screen" /> <link rel="pingback" href="<?php bloginfo('pingback_url') ?>" /> <meta name="ComicPress" content="<?php echo comicpress_themeinfo('version'); ?>" /> <!--[if lt IE 7]> <script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/js/ie6submenus.js"></script> <![endif]--> <?php wp_head(); ?> </head> <body <?php body_class(); ?>> <?php if (is_active_sidebar('above-header')) get_sidebar('above'); ?> <div id="page-head"></div> <?php if (!comicpress_themeinfo('disable_page_restraints')) { if (is_cp_theme_layout('standard,v')) { ?> <div id="page-wrap"><!-- Wraps outside the site width --> <div id="page"><!-- Defines entire site width - Ends in Footer --> <?php } else { ?> <div id="page-wide-wrap"><!-- Wraps outside the site width --> <div id="page-wide"><!-- Defines entire site width - Ends in Footer --> <?php } } ?> <div id="header"> <?php do_action('comicpress-header'); ?> <h1><a href="<?php echo home_url(); ?>"><?php bloginfo('name') ?></a></h1> <div class="description"><?php bloginfo('description') ?></div> <?php if (is_active_sidebar('header')) get_sidebar('header'); ?> <div class="clear"></div> </div> <?php if (!comicpress_themeinfo('disable_default_menubar')) comicpress_menubar(); if (is_active_sidebar('menubar')) get_sidebar('menubar'); get_template_part('layout', 'head'); ?>
Forum: Fixing WordPress
In reply to: How do you modify siding door menu in "Picture Perfect" themeOh wow, didn’t even know there was a forum for the themes themselves.