Link to home
Start Free TrialLog in
Avatar of Larry Vollmer
Larry Vollmer

asked on

HTML,CSS question

http://tinyurl.com/4cvhwxk

I have this page. When you use the scroll bar to scroll down, some dotted lines appear around the div. See the screenshot.

Is there any way to remove these lines?
web.jpg
Avatar of JF0
JF0
Flag of United States of America image

change this line:
<div class="entrytext jspScrollable" style="overflow: hidden; padding: 0px; width: 530px;" tabindex="0">
to
<div class="entrytext jspScrollable" style="overflow: hidden; padding: 0px; width: 530px; outline:none;" tabindex="0">
Avatar of Larry Vollmer
Larry Vollmer

ASKER

the problem is that i cannot find that in my code: here is how it is laid out
<?php 
get_header();

 ?>
 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>

 <link type="text/css" href="<?php echo bloginfo('template_url'); ?>/css/jquery.jscrollpane.css" rel="stylesheet" media="all" />
<script type="text/javascript" src="<?php echo bloginfo('template_url'); ?>/js/jquery.jscrollpane.js"></script>
<script type="text/javascript"> 
$(function()
{
	$('.entrytext').jScrollPane({scrollbarWidth:3 ,scrollbarMargin:25});
});
</script>
		 <div class="scrolll Favorites">
		 	        	<div id="fav-title" style ="padding:bottom:20px"><img src = "http://s111576.gridserver.com/wp-content/uploads/2011/03/staceysfave_headline.jpg" /></div>
			<div class="entrytext">
				<?php
						query_posts(array( 'cat' => '6', 'order' => 'asc' ));
						if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
						<div class="fav-post">
							<div class="fav-image"><?php the_post_thumbnail(); ?></div>
							<div class="fav-content">
								<div class="fav-title"><?php the_title(); ?></div>
								<div class="fav-excerpt"><?php the_excerpt(); ?></div>
							</div>
							<div class="clearb"></div>
						</div> 
					<?php	endwhile; else:
						endif;
						wp_reset_query();

?>
			</div>
			
        </div>
        <!-- main image end -->
<?php get_footer(); ?>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of JF0
JF0
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
jackpot thanks