Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)
  • Thread Starter meridebikes

    (@meridebikes)

    Sorry for the long code before.

    I believe this is where the problem is. If I change the background color below to black the whole blog goes black.

    /* Main structure
    ----------------------------------------------- */
    body { font-family: Verdana, Helvetica, Arial, sans-serif; font-size: 76%; line-height: 120%; color: #404040; background: #fff; }
    #wrapper { text-align: left; }
    body.rtl #wrapper { text-align: right; direction: rtl; }
    	#header, #content { margin-bottom: 2em; padding-left: 20px; padding-right: 20px; }
    	#footer, #theme-info, #footer-include { clear: both; }
    
    /*

    Also here’s the entire code on pastebin.

    Thanks

    Thread Starter meridebikes

    (@meridebikes)

    Ok, I guess I’ll re-upload the affected images. What a pain…

    Can you tell me why then the 2010 images show up if they were done the same way?

    All photos were originally uploaded through WP.

    Thread Starter meridebikes

    (@meridebikes)

    From what I can see the files are in the correct places within the folders. I just dragged and dropped everything into the new empty folders when I reloaded WP to 2.7.1. I have since updated to 2.9.1 but the files weren’t loading before.

    Is there a certain permissions setting or something that I need to change on the entire 2009 file, or move it? Or how would I go about reloading only those files? It’s currently wp-content/uploads/2009/date/photo name

    thanks.

    Thread Starter meridebikes

    (@meridebikes)

    I fixed the error, but can someone please go to the site and check the pictures for me again. Scroll down and tell me if they all show up.

    https://www.ridegiantbmx.com

    they’re not showing up for me on any computer, and I don’t know why. I also cannot edit them in my dashboard, it doesn’t allow me.

    I recently reloaded 2.7.1 and reloaded all the files. I also changed the theme, but since then I haven’t been able to view the pictures. Please offer any advice, or let me know of they show up for you?

    Thread Starter meridebikes

    (@meridebikes)

    all images, if you scroll down? maybe it’s my computer then, because i’m only seeing the top two or three.

    Thread Starter meridebikes

    (@meridebikes)

    Ok so I’m still stuck here.

    website: https://www.ridegiantbmx.com

    Any theme I try aside from my current theme, or the 2 default themes when i click activate I just get a blank white screen.

    I’ve reinstalled the 2.9.1 Should I go back to an old version?

    I’ve deactivated all plugins.

    I’ve read tons of other posts, but can’t seem to find the right answer.

    Also, I want to get rid of the outer scrolling page, so that the only page displayed is the Blog.

    I’ve been battling this for days, if anyone can please help me out I’ll be your best friend.

    Thread Starter meridebikes

    (@meridebikes)

    I’m sorry but I’m having a hard time understanding your post.

    Thread Starter meridebikes

    (@meridebikes)

    If anyone can point me in the right direction I’d appreciate it!

    Thread Starter meridebikes

    (@meridebikes)

    Complete code if this helps at all..

    <?php global $vigilance; ?>
    <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.1//EN”
    https://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd”&gt;
    <html xml:lang=”en” xmlns=”https://www.w3.org/1999/xhtml”&gt;
    <head>
    <?php if( is_front_page() ) : ?>
    <title><?php bloginfo(‘name’); ?></title>
    <?php elseif( is_404() ) : ?>
    <title><?php _e(‘Page Not Found |’, ‘vigilance’) ?> <?php bloginfo(‘name’); ?></title>
    <?php elseif( is_search() ) : ?>
    <title><?php printf(__ (“Search results for ‘%s'”, “vigilance”), attribute_escape(get_search_query())); ?> | <?php bloginfo(‘name’); ?></title>
    <?php else : ?>
    <title><?php wp_title($sep = ”); ?> | <?php bloginfo(‘name’);?></title>
    <?php endif; ?>

    <!– Basic Meta Data –>
    <meta name=”copyright” content=”Vigilance Theme Design: Copyright 2008 – 2009 Jestro LLC” />
    <meta http-equiv=”imagetoolbar” content=”no” />
    <meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>” />
    <?php if((is_single() || is_category() || is_page() || is_home()) && (!is_paged())){} else {?>
    <meta name=”robots” content=”noindex,follow” /><?php } ?>

    <!– Favicon –>
    <link rel=”shortcut icon” href=”<?php bloginfo(‘stylesheet_directory’); ?>/images/favicon.ico” />

    <!–Stylesheets–>
    <link href=”<?php bloginfo(‘stylesheet_url’); ?>” type=”text/css” media=”screen” rel=”stylesheet” />
    <!–[if lt IE 8]><link rel=”stylesheet” type=”text/css” media=”screen” href=”<?php bloginfo(‘template_url’); ?>/stylesheets/ie.css” /><![endif]–>
    <!–[if lte IE 6]><link rel=”stylesheet” type=”text/css” media=”screen” href=”<?php bloginfo(‘template_url’); ?>/stylesheets/ie6.css” /><![endif]–>

    <!–Wordpress–>
    <link rel=”alternate” type=”application/rss+xml” title=”<?php bloginfo(‘name’); ?> RSS Feed” href=”<?php bloginfo(‘rss2_url’); ?>” />
    <link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />
    <!–WP Hook–>
    <?php if ( is_singular() ) wp_enqueue_script( ‘comment-reply’ ); ?>
    <?php wp_head(); ?>
    </head>
    <body <?php body_class(); ?>>
    <div id=”wrapper”>
    <div id=”header” class=”clear”>
    <?php if (is_home()) echo(‘<h1 id=”title”>’); else echo(‘<div id=”title”>’);?>“><?php bloginfo(‘name’); ?><?php if (is_home()) echo(‘</h1>’); else echo(‘</div>’);?>
    <div id=”description”>
    <h2><?php bloginfo(‘description’); ?></h2>
    </div><!–end description–>
    <div id=”nav”>

      <?php if ($vigilance->hideHome() !== ‘true’) : ?>
      <li class=”page_item <?php if (is_front_page()) echo(‘current_page_item’);?>”>“><?php _e(‘Home’, ‘vigilance’) ?>
      <?php endif; ?>
      <?php if ($vigilance->hidePages() !== ‘true’) : ?>
      <?php wp_list_pages(‘title_li=&depth=1&exclude=’. $vigilance->excludedPages()); ?>
      <?php endif; ?>
      <?php if ($vigilance->hideCategories() != ‘true’) : ?>
      <?php wp_list_categories(‘title_li=&depth=1&exclude=’ . $vigilance->excludedCategories()); ?>
      <?php endif; ?>

    </div><!–end nav–>
    </div><!–end header–>
    <div id=”content” class=”pad”>
    <?php if (is_file(STYLESHEETPATH . ‘/header-banner.php’)) include(STYLESHEETPATH . ‘/header-banner.php’); else include(TEMPLATEPATH . ‘/header-banner.php’); ?>
    <?php if (is_front_page()) : ?>
    <?php if (is_file(STYLESHEETPATH . ‘/header-alertbox.php’)) include(STYLESHEETPATH . ‘/header-alertbox.php’); else include(TEMPLATEPATH . ‘/header-alertbox.php’); ?>
    <?php endif?>

    Thread Starter meridebikes

    (@meridebikes)

    Update-
    I believe I found line 38 in my directories, just not sure how to proceed:
    <body <?php body_class(); ?>>

Viewing 10 replies - 1 through 10 (of 10 total)