Posted: Jul 01, 2010 6:09 pm
by newolder
Oliver wrote:
newolder wrote:How do I make the instance of the ratskep forum on my machine make <div><class=”logo-image”>...</div> point to http://farm5.static.flickr.com/4096/474 ... ce7d_b.jpg
please?

I really do not understand this question, but do you wish to place an image on a web page using HTML? To do that, use the following code (you can change the image source to point to any image URL):
Code: Select all
<img src="http://farm5.static.flickr.com/4096/4749632449_65b393ce7d_b.jpg" alt="Rational Skepticism" width="666px" height="143px" />

Looking at what you've written, you should note that the 'class' attribute is used to style a parent element, so your code would actually be:
Code: Select all
<div class="logo-image"> ... div content goes here ... </div>

Not that for this you need to use CSS to define contents of the class, for example:
Code: Select all
<style type="text/css">
div.logo-image { width: 666px; height: 143px; border: 0px; }
</style>

Alternatively, you can implement the above code directly into the div element, as so:
Code: Select all
<div style="width: 666px; height: 143px; border: 0px;"> ... div content goes here ... </div>

Does this answer your question?

Yes. thank you. :cheers: