98.7% Of all customers recommend us, we're so confident about our results we publish all reviews and stats
View Live Stats View ReviewsForum home » Delegate support and help forum » Dreamweaver Training and help » Graphics
Graphics
Resolved · Low Priority · Version CS3
Jo has attended:
Dreamweaver 8 Introduction course
Graphics
How do I set a graphic (small version of company logo) to be a bullet point?
RE: Graphics
Hi Jo,
Thanks for your question. I hope you enjoyed the Dreamweaver training.
First of all, prepare your graphic, and upload it to your images folder on your server/hosting account.
Then, create some CSS, either in your global CSS styles, or in the document. (You can use Dreamweaver to do this). Here is the CSS code that should result:
ul .companylogo {
list-style-image: url("/images/bullet_logo.gif");
}
This assumes you have an image called 'bullet_logo.gif' in your /images folder.
Then, for the HTML, use:
<ul class="companylogo">
<li>First list item</li>
<li>Second list item</li>
</ul>
If you wanted ALL your bullet lists to use the image, take out the .companylogo part from the CSS style, and the class="companylogo" part from the HTML.
Let me know how you get on.
If this answer resolves your query, please mark the question as 'resolved' (see below). Otherwise, please post a follow-up response to this post, and I will assist you further.
Regards, Rich
Tue 17 Mar 2009: Automatically marked as resolved.
Training information:
Welcome. Please choose your application (eg. Excel) and then post your question. Our Microsoft Qualified trainers will then respond within 24 hours (working days). Frequently Asked Questions
Any suggestions, questions or comments? Please post in the Improve the forum thread. |
Dreamweaver tip:Toggle panels on and offPress the F4 key to toggle all the panels in Dreamweaver on or off. This gives you more editing and programming screen space. |