In the following code I would like to hide "Hello world" but keep visible my ul.myphotos with CSS.
Here is a sample of what I have:
<ul class="content">
<li>
Hello world
<ul class="myphotos">
<li>Photo1</li>
<li>Photo2</li>
</ul>
</li>
</ul>