Developer forum

Forum » Templates » Change design in the news list template

Change design in the news list template


Reply

Hi All




I want to hear if anyone have some suggestions to how ti list the latest news in collomns instead of in a row as it is as standard.




 




I have now a list of the 3 latest news on my webpages by using a paragraph template end a news modul inserted in that. It works fine.




 




In our new design I want the 3 latest news listet in the bottom of the pages, and I want the news listet in 3 colomns (1 news in 1 collomn).




 




Does any of you know, how I change the design of that list template (which are beeing used in the news pages) or even bette does any of you have a template thats satisfy my wishes, that I can use.




 




 


Replies

 
Reply

Hi Brian




 




Do it like this.




 




1. Modify the output of the newsmodule to an unsorted list (The UL LI tags in HTML)


2. Apply the following CSS.




ul {


  padding: 0px;


  margin: 0px;


}


 


ul li {


  padding: 0px;


  margin: 0px;


  list-style: none;


  float: left;


}

 
Reply


Hi, could anyone share a tip on how to modify the output of the newsmodule like Dammark describes?  Or even better - does anybody have a sample news list template they could share? Any help would be very much appreciated... :-)




(newbie)







Dammark wrote:








Hi Brian
















 
















Do it like this.
















 
















1. Modify the output of the newsmodule to an unsorted list (The UL LI tags in HTML)








2. Apply the following CSS.
















ul {








  padding: 0px;








  margin: 0px;








}








 








ul li {








  padding: 0px;








  margin: 0px;








  list-style: none;








  float: left;








}





 

You must be logged in to post in the forum