Ver Mensaje Individual
  #1 (permalink)  
Antiguo 22/08/2012, 11:23
Avatar de NTHINGs
NTHINGs
 
Fecha de Ingreso: agosto-2012
Ubicación: Durango
Mensajes: 17
Antigüedad: 12 años, 6 meses
Puntos: 0
Exclamación Cambiar el tamaño de este <div>

Bueno tratare ser lo mas claro posible. Tengo este cuadro en wordpress

Y en el código fuente de la página me aparece la propiedad de cambiarle el tamaño

pero en el archivo de esa página no aparece la propiedad width= o height=. ¿Podrían ayudarme?

Aqui esta el fragmento del código donde se supone que debe de aparecer:
Código:
   <h1 style="margin-top:15px;">Últimos Números</h1>
				<strong><a class="ver-todos" style="margin-left:240px;" href="<?php bloginfo('url'); ?>/series" title="Últimos Números"><span style="color: #ca0000;font-weight: bold;text-shadow: 0 1px 0 #f9fdff;">Ver Listado de Cómics »</span></a></strong>
				<div class="cuevana-scrollpane-container" id="scrollpane1-container">
                   	<div class="leftScroll"></div>
					<div class="rightScroll"></div>
					<div class="cuevana-scrollpane" id="scrollpane1">
						<div style="margin-right:-1580px";>
                        <?php
							$args = array(
								'archivos'=> 'series',
								'posts_per_page' => 13,
							);
						?>
                         <?php query_posts( $args ); ?>
                       	<!-- WHILE -->
                   <?php while ( have_posts() ) : the_post(); ?>
                       		<div class="poster post-<?php the_ID(); ?>">
                          <a class="aimg" href="<?php the_permalink() ?>" rel="tooltip" title='<h2><?php the_title(); ?></h2><p><?php wp_limit_post(170,'[...]',true); ?></p><h2></h2><p></p>
								<p><ul>
                                    	<?php if(get_the_term_list($post->ID, 'serie', '', ', ', '') != ""){ ?>
                                    	<li><strong>Cómic: <?php echo get_the_term_list($post->ID, 'serie', '', ', ', ''); ?></a></strong></li>
                                        <?php } ?>
                                        <li><strong>Dibujantes: <?php echo get_the_term_list($post->ID, 'director', '', ', ', ''); ?></strong></li>
                                        <li><strong>Escritor(es): <?php echo get_the_term_list($post->ID, 'escritor', '', ', ', ''); ?></strong></li>
                                        <li><strong>Publisher: <?php the_category(', '); ?></strong></li>
                    				</ul></p>'>
                                <?php the_post_thumbnail(array(128,171)); ?></a>
                                <div class="mdata">
                                    <a href="<?php the_permalink() ?>"><strong><?php the_title(); ?></strong></a><br />
                                    <?php if(function_exists('the_ratings')) { the_ratings(); } ?>
                                </div>
                            </div>