Smilies have already been covered on my blog several times ??
Go into kubrick.css, find the part that says ‘p img’, and delete the line that says ‘display: block;’ (or change it to ‘display: inline;’)
As for navigation. Create a list of menu items like this:
?′<ul id=”menu”>
- menu1
- menu2
?′
And then in kubrick.css:
#menu, #menu li {
display: inline;
margin: 0 auto;
list-style-type: none;
}
That’s off the top of my head. But feel free to rummage through the CSS on my site, https://binarybonsai.com, where you’ll find similar examples.