use :before and :after psuedo elements with css property content.
eg, to separate a list of items with '|':
li:after { content: ' | '; }
li:last-child:after { content: ''; }
note line 2: no separater after the last item in the list. more »
when there's nothing to display or when there's nothing in search result, the following message is displayed:sorry, there's nothing to display... to change this text, locate display_if_empty() in template and add a new parameter, so it looks like… more »
need some dummy / random text as content prototypes but don’t want to use text like 'content here' or 'blah blah blah'? very often you see some random dummy text beginning with Lorem ipsum...'
try this lorem ipsum generator to generate paragraphs and l… more »
by default, texts are wrapped to the next line. to disable text wrapping inside an element, set the css property white-space to nowrap.
.something { white-space: nowrap; } more »
notes and references on web development and various things.
disclaimers
this site does not guarantee accuracy of information provided. codes may not be tested, are provided as is and are free to to use. use at your own risk. limited or no support will be provided.
under no circumstances shall this site be responsible or liable for any damages or consequences as a result of direct or indirect usage of any information from this website.