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 Quote 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? ... Quote 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. Quote 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++; } Quote 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 Quote 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. Quote 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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.