anthelo Posted August 7, 2012 Share Posted August 7, 2012 Hello, what im trying to do is display circles with different colors. So i created 2 css (.circle-1 , .circle-2) What i want to do is to start with .circle-1 and on the second post add .circle-2 , on the third .circle-1 and repeat it self. Can anyone show me how i can do that with php? Regards Link to comment https://forums.phpfreaks.com/topic/266758-php-display-css-with-order-12121212-etc/ Share on other sites More sharing options...
PeoMachine Posted August 7, 2012 Share Posted August 7, 2012 What do you have? An result of a select? A finite loop? ... Link to comment https://forums.phpfreaks.com/topic/266758-php-display-css-with-order-12121212-etc/#findComment-1367432 Share on other sites More sharing options...
anthelo Posted August 7, 2012 Author Share Posted August 7, 2012 Hello PeoMachine i have news displaying.. and i want to put a bubble next to the date with different css background. Link to comment https://forums.phpfreaks.com/topic/266758-php-display-css-with-order-12121212-etc/#findComment-1367433 Share on other sites More sharing options...
jazzman1 Posted August 7, 2012 Share Posted August 7, 2012 You want to be something like this? $k = 0; while($k < 10) { for ($i=1; $i < 3; $i++) printf ("%d\n", $i); if($i%2 == 0) $i = 1; $k++; } Link to comment https://forums.phpfreaks.com/topic/266758-php-display-css-with-order-12121212-etc/#findComment-1367450 Share on other sites More sharing options...
Mahngiel Posted August 7, 2012 Share Posted August 7, 2012 let's say your code looks like this: <div class="post">CONTENT HERE</div> using CSS pseudo elements, you can actually alternate with nth-child. http://jsfiddle.net/Mahngiel/jmKc4/ so take your styles for .circle1 and .circle2 and apply them to the psuedo Link to comment https://forums.phpfreaks.com/topic/266758-php-display-css-with-order-12121212-etc/#findComment-1367478 Share on other sites More sharing options...
anthelo Posted August 20, 2012 Author Share Posted August 20, 2012 thanks. Link to comment https://forums.phpfreaks.com/topic/266758-php-display-css-with-order-12121212-etc/#findComment-1370765 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.