Missing red line and remove welcome
-
Hello!
Thanks in advance for any help…..I appreciate it!
This site..
https://thedrummerdrives.com/
On the home page, the red bar is missing, on the back pages it’s there…originally there was this information…<div id="banner"> <!-- Banner Slides --> <div id="mySlides" class="stepcarousel"> <div class="belt"> <?php $slider_posts = new WP_Query(); $slider_posts->query("category_name=".$seven_slider_cat."&showposts=".$seven_slider_count.''); while ($slider_posts->have_posts()) : $slider_posts->the_post(); ?> <div class="panel"> <?php $args = array( 'order' => 'ASC', 'post_type' => 'attachment', 'post_parent' => $post->ID, 'post_mime_type' => 'image', 'post_status' => null, 'numberposts' => -1, ); $attachments = get_posts($args); ?> <div class="description"> <span class="big"><?php the_title(); ?></span> <?php the_content(''); ?> <?php $link = get_post_meta($post->ID, 'link',true); ?> <?php if($link){ ?> <a href="<?php echo $link; ?>" class="readmore-bt"></a> <?php $link=''; } ?> </div> <div class="images"> <?php if ($attachments) { foreach ($attachments as $attachment) { echo wp_get_attachment_image($attachment->ID, 'full', false); close; } } ?> </div> </div> <?php endwhile ?> </div><!-- end belt --> </div><!-- end mySlides --> </div><!-- end banner -->
which i removed to get rid of the big banner slide show at the top of the page….I’m assuming that also removed the red bar..=) which part should i leave in to keep the red bar? (it’s black on the home page, but red everywhere else if that makes sense?)
also is there any way to remove the “welcome” button there?
sorry to be a pain…=)
carrie
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Missing red line and remove welcome’ is closed to new replies.