Ver Mensaje Individual
  #8 (permalink)  
Antiguo 15/01/2016, 11:45
devil65
 
Fecha de Ingreso: marzo-2015
Mensajes: 184
Antigüedad: 9 años, 1 mes
Puntos: 3
Respuesta: [DUPLICADO] error DESC limit

mmm bueno te explico supongamos que tengo dos <div class="1"> que es azul y el otro <div class="2"> que es rojo, entonces si yo hago la consulta y le digo que me muestre todo en orden descendente el me muestra todo en el <div class="1"> que es azul pero no me muestra el div rojo
entonces lo que deseo es que al hacer la consulta el sistema me muestre todos los div hasta el 6 pero en orden azul, rojo---- azul, rojo -----azul, rojo-----azul, rojo

no se si me haga entender y muchas gracias por tu paciencia.
este es el código completo HTML
Código HTML:
Ver original
  1. <!-- team section -->
  2.  
  3.             <section class="team" id="team">
  4.                 <div class="container">
  5.                     <div class="row">
  6.                         <div class="team-heading text-center">
  7.                             <h2>our team</h2>
  8.  
  9.                             <h4>Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled</h4>
  10.                         </div>
  11.  
  12.                         <div class="col-md-2 single-member col-sm-4">
  13.                             <div class="person">
  14.                                 <img class="img-responsive" src="img/item1.jpg" alt="member-1">
  15.                             </div>
  16.  
  17.                             <div class="person-detail">
  18.                                 <div class="arrow-bottom"></div>
  19.                                 <h3>Mr. Graham</h3>
  20.                                 <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, </p>
  21.                             </div>
  22.                        
  23.                         </div>
  24.  
  25.                         <div class="col-md-2 single-member col-sm-4">
  26.  
  27.                             <div class="person-detail">
  28.                                 <div class="arrow-top"></div>
  29.                                 <h3>Mr. David</h3>
  30.                                 <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, </p>
  31.                             </div>
  32.                             <div class="person">
  33.                                 <img class="img-responsive" src="img/item2.jpg" alt="member-2">
  34.                             </div>
  35.                         </div>
  36.                         <div class="col-md-2 single-member col-sm-4">
  37.                             <div class="person">
  38.                                 <img class="img-responsive" src="img/item3.jpg" alt="member-3">
  39.                             </div>
  40.                             <div class="person-detail">
  41.                                 <div class="arrow-bottom"></div>
  42.                                 <h3>Mr. Hovid</h3>
  43.                                 <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, </p>
  44.                             </div>
  45.                         </div>
  46.  
  47.                         <div class="col-md-2 single-member col-sm-4">
  48.                             <div class="person-detail">
  49.                                 <div class="arrow-top"></div>
  50.                                 <h3>Mr Jasak</h3>
  51.                                 <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, </p>
  52.                             </div>
  53.                             <div class="person">
  54.                                 <img class="img-responsive" src="img/item4.jpg" alt="member-4">
  55.                             </div>
  56.                         </div>
  57.  
  58.                         <div class="col-md-2 single-member col-sm-4">
  59.                             <div class="person">
  60.                                 <img class="img-responsive" src="img/item5.jpg" alt="member-5">
  61.                             </div>
  62.  
  63.                             <div class="person-detail">
  64.                                 <div class="arrow-bottom"></div>
  65.                                 <h3>Mr. Joy Ka</h3>
  66.                                 <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, </p>
  67.                             </div>
  68.                         </div>
  69.  
  70.                         <div class="col-md-2 single-member col-sm-4">
  71.  
  72.                             <div class="person-detail">
  73.                                 <div class="arrow-top"></div>
  74.                                 <h3>Mr. Mikari</h3>
  75.                                 <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, </p>
  76.                             </div>
  77.                             <div class="person">
  78.                                 <img class="img-responsive" src="img/item6.jpg" alt="member-5">
  79.                             </div>
  80.  
  81.                         </div>
  82.                     </div>
  83.                 </div>
  84.             </section><!-- end of team section -->

Última edición por devil65; 15/01/2016 a las 12:03