Forums

Need A Bit Of Help With Some Design Issues (8 posts)

  1. Matt Jo
    Member
    Posted 1 year ago #

    Hi

    I need help with a few design issues. Any help anyone can give me would be greatly appreciated. My site is wegotthiscovered.com

    Here are the things I can't figure out how to do

    1) Link my banner/header at the top of the page to go to the site's home page when you click it

    2) If you look on the sidebar you'll see an ad that only takes up half the box. It looks dumb, I don't think I can change the size of the ad but I can put another one in but whenever I put in the code the ad goes below the other one, I'm trying to get it to go beside it, how do I do that?

    3) The featured content gallery at the top, I'd like it to switch by itself, right now you have to hit the arrows to make it scroll.

    4) If you click on an article you can see the authors name but the authors name isn't clickable, I'd like to make it so you can click the authors name and have it take you to a page with all his/her articles

    5) None of the articles on the front page have the 'read more' button, the only way to get to the article is to click the title. I'd like to make it so it has a 'read more' button.

    Any help with any of these issues would be great.

    Thanks

  2. MAS
    Member
    Posted 1 year ago #

    1) search '<h1 id="blog-title">' tag in header.php and replace the code

    <h1 id="blog-title">
    <span>
    <a rel="home" title="<?php bloginfo("name")?>" href="<?php bloginfo("home")?>/"><?php bloginfo("name")?></a>
    </span>
    </h1>

    3) edit your feature php file

    <script type="text/javascript">
    var $jx = jQuery.noConflict();
    $jx(function() {
     $jx(".mygallery").jCarouselLite({
            btnNext: ".nextb",
            btnPrev: ".prevb",
            timeout: 6000,
    	speed: 1000,
    	easing: "backout"
    
        });
    
    });
    </script>

    4) replace <?php the_author()?> with <?php the_author_link() ?>

    5) can you give your index.php file

  3. Matt Jo
    Member
    Posted 1 year ago #

    1) so I replace <h1 id="blog-title"> with
    <h1 id="blog-title">
    <span>
    " href="<?php bloginfo("home")?>/"><?php bloginfo("name")?>
    </span>
    </h1>

    ??

    3) I don't have a feature.php file

    4) in which file

    5)Ye I can email it to you if you want

  4. MAS
    Member
    Posted 1 year ago #

  5. MAS
    Member
    Posted 1 year ago #

    3) slide.php

  6. MAS
    Member
    Posted 1 year ago #

    4) first backup index.php file then replace the file

    <?php get_header(); ?>
    <div id="featured">
    <?php include (TEMPLATEPATH . '/slide.php'); ?>
    </div>
       <a href="#" class="prevb"></a>
       <a href="#" class="nextb"></a>
    <div id="content">
    
    <?php if (have_posts()) : ?>
    <!-- Begin: AdBrite, Generated: 2010-07-03 12:53:40  -->
    <script type="text/javascript">
    var AdBrite_Title_Color = '0000FF';
    var AdBrite_Text_Color = '000000';
    var AdBrite_Background_Color = 'FFFFFF';
    var AdBrite_Border_Color = 'CCCCCC';
    var AdBrite_URL_Color = '008000';
    try{var AdBrite_Iframe=window.top!=window.self?2:1;var AdBrite_Referrer=document.referrer==''?document.location:document.referrer;AdBrite_Referrer=encodeURIComponent(AdBrite_Referrer);}catch(e){var AdBrite_Iframe='';var AdBrite_Referrer='';}
    </script>
    <span style="white-space:nowrap;"><script type="text/javascript">document.write(String.fromCharCode(60,83,67,82,73,80,84));document.write(' src="http://ads.adbrite.com/mb/text_group.php?sid=1684276&zs=3436385f3630&ifr='+AdBrite_Iframe+'&ref='+AdBrite_Referrer+'" type="text/javascript">');document.write(String.fromCharCode(60,47,83,67,82,73,80,84,62));</script>
    <a target="_top" href="http://www.adbrite.com/mb/commerce/purchase_form.php?opid=1684276&afsid=1"><img src="http://files.adbrite.com/mb/images/adbrite-your-ad-here-banner.gif" style="background-color:#CCCCCC;border:none;padding:0;margin:0;" alt="Your Ad Here" width="11" height="60" border="0" /></a></span>
    <!-- End: AdBrite -->
    <?php while (have_posts()) : the_post(); ?>
    <div class="post" id="post-<?php the_ID(); ?>">
    <div class="title">
    <div class='datebox'>
    <span class='date'><?php the_time('d'); ?></span> <br />
    <span class='month'><?php the_time('M'); ?></span>
    </div>
    <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
    <div class="clear"></div>
    </div>
    
    <div class="postcover">
    <a href="<?php the_permalink() ?>"><?php elv_home_image();?> </a>
    <?php the_excerpt(); ?>
    <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">Read More...</a></h2>
    <div class="clear"></div>
    </div>
    <div class="title-meta">
    <span class="author">Posted by <?php the_author(); ?></span>
    <span class="com"><?php comments_popup_link('ADD COMMENTS', '1 COMMENT', '% COMMENTS'); ?></span>
    </div>
    </div>
    <?php endwhile; ?>
    
     <div id="navigation">
    <?php
    if(function_exists('wp_pagenavi')) { wp_pagenavi(); }
    ?>
    </div>
    
    <?php else : ?>
    
    <div class="title"><h2>Oops.. Nothing Found !</h2></div>
    <div class="cover"> <p>I think what you are looking for is not here or it has been moved. Please try a different search..</p> </div>
    
    <?php endif; ?>
    
    </div>
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>
  7. Matt Jo
    Member
    Posted 1 year ago #

    ok the read more worked but not the authors
    and what do I edit in the slide.php file

  8. Matt Jo
    Member
    Posted 1 year ago #

    anyone?

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags

No tags yet.