﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>Micro Mart Forum / Micro Mart Diploma / Micro Mart Forums  / HTML Diploma test / Latest Posts</title><generator>InstantForum.NET v4.1.4</generator><description>Micro Mart Forum</description><link>http://forum.micromart.co.uk/</link><webMaster>forums@micromart.co.uk</webMaster><lastBuildDate>Sat, 22 Nov 2008 17:18:47 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: HTML Diploma test</title><link>http://forum.micromart.co.uk/Topic88981-51-1.aspx</link><description>[quote][b]cartoony (19/02/2006)[/b][hr]Mines nowhere near ready, I think it'll be ok cos the eds live in the real world and realise we're doing this in our 'spare' time.&lt;BR&gt;&lt;BR&gt;That css code;&lt;BR&gt;You need to remove &amp;lt;-- from the beginning and from the end I think that means "this is a comment" and nothing in between will get published. You use it when you want to make a note to yourself without altering the code.&lt;BR&gt;&lt;BR&gt;#FFFFFF is the code for white, so if you find the hex no. for the colour you want to use, replace #FFFFFF with the new value and you can make your links whatever colour fits your scheme. Its a new one on me; I thought you had to use a javascript![/quote]&lt;/P&gt;&lt;P&gt;the &amp;lt;!---- is just a thing dreamweaver inserts! Your right it is for comments but it's also to show where the CSS starta and ends. Don't worry everything inside it will still work, it only comments out 1 line.&lt;/P&gt;&lt;P&gt;Also there is no code for 'no colour', in html you can only not specify a colour in which case the browser uses it's defasult colur - white for tables backgrounds for example, or blue for hyperlinks. Thats why I said it wasn't very elegant ;)</description><pubDate>Mon, 20 Feb 2006 10:48:07 GMT</pubDate><dc:creator>Tom Morton</dc:creator></item><item><title>RE: HTML Diploma test</title><link>http://forum.micromart.co.uk/Topic88981-51-1.aspx</link><description>Mines nowhere near ready, I think it'll be ok cos the eds live in the real world and realise we're doing this in our 'spare' time.&lt;br&gt;&lt;br&gt;That css code;&lt;br&gt;You need to remove &lt;-- from the beginning and --&gt; from the end I think that means "this is a comment" and nothing in between will get published. You use it when you want to make a note to yourself without altering the code.&lt;br&gt;&lt;br&gt;#FFFFFF is the code for white, so if you find the hex no. for the colour you want to use, replace #FFFFFF with the new value and you can make your links whatever colour fits your scheme. Its a new one on me; I thought you had to use a javascript!</description><pubDate>Sun, 19 Feb 2006 22:28:13 GMT</pubDate><dc:creator>cartoony</dc:creator></item><item><title>RE: HTML Diploma test</title><link>http://forum.micromart.co.uk/Topic88981-51-1.aspx</link><description>Thanks for the sound advise I'll give it a go as soon as I get the time. Does anyone know when its got to be submitted by?&lt;/P&gt;&lt;P&gt;PS. Got connected at home now so I'll be keeping track of the Forum more often now. No more libraries, and uni' PC's for me!&lt;/P&gt;&lt;P&gt;;)</description><pubDate>Fri, 17 Feb 2006 16:39:21 GMT</pubDate><dc:creator>Novice User</dc:creator></item><item><title>RE: HTML Diploma test</title><link>http://forum.micromart.co.uk/Topic88981-51-1.aspx</link><description>Ok heres a quick solution , actually theres 2. If the first doesn't work the second might(it's not vey elegant - there is a beter one but I can't remember offhand :P )&lt;BR&gt;&lt;BR&gt;To do it you need to change the link style on the page - beware tho the second option will make all other links will dissappear as well. I will try and remeber tyhe workaround for tha but for now:&lt;BR&gt;&lt;BR&gt;[b]Solution 1. Add this to the head tag of your document -&amp;gt;[/b]&lt;BR&gt;&lt;BR&gt;[code]&amp;lt;style type="text/css"&amp;gt;&lt;BR&gt;&amp;lt;!--&lt;BR&gt;a:link {&lt;BR&gt; text-decoration: none;&lt;BR&gt;}&lt;BR&gt;a:visited {&lt;BR&gt; text-decoration: none;&lt;BR&gt;}&lt;BR&gt;a:hover {&lt;BR&gt; text-decoration: none;&lt;BR&gt;}&lt;BR&gt;a:active {&lt;BR&gt; text-decoration: none;&lt;BR&gt;}&lt;BR&gt;--&amp;gt;&lt;BR&gt;&amp;lt;/style&amp;gt;&lt;STYLE type=text/css&gt;&lt;br&gt;&lt;br&gt;a:link {&lt;br&gt;text-decoration: none;&lt;br&gt;}&lt;br&gt;a:visited {&lt;br&gt;text-decoration: none;&lt;br&gt;}&lt;br&gt;a:hover {&lt;br&gt;text-decoration: none;&lt;br&gt;}&lt;br&gt;a:active {&lt;br&gt;text-decoration: none;&lt;br&gt;}&lt;br&gt;&lt;br&gt;&lt;/STYLE&gt;[/code]&lt;BR&gt;&lt;BR&gt;That code stops all the links from being underlined that means [b]all[/b] the links on the page not just the pics. If that doesnt work try:&lt;BR&gt;&lt;BR&gt;[b]Solution 2. Add this to the head tag of your document -&amp;gt;[/b]&lt;BR&gt;&lt;BR&gt;[code]&amp;lt;style type="text/css"&amp;gt;&lt;BR&gt;&amp;lt;!--&lt;BR&gt;a:link {&lt;BR&gt; text-decoration: none;&lt;BR&gt; color: #FFFFFF;&lt;BR&gt;}&lt;BR&gt;a:visited {&lt;BR&gt; text-decoration: none;&lt;BR&gt; color: #FFFFFF;&lt;BR&gt;}&lt;BR&gt;a:hover {&lt;BR&gt; text-decoration: none;&lt;BR&gt; color: #FFFFFF;&lt;BR&gt;}&lt;BR&gt;a:active {&lt;BR&gt; text-decoration: none;&lt;BR&gt; color: #FFFFFF;&lt;BR&gt;}&lt;BR&gt;--&amp;gt;&lt;BR&gt;&amp;lt;/style&amp;gt;&lt;STYLE type=text/css&gt;&lt;br&gt;&lt;br&gt;a:link {&lt;br&gt;text-decoration: none;&lt;br&gt;color: #FFFFFF;&lt;br&gt;}&lt;br&gt;a:visited {&lt;br&gt;text-decoration: none;&lt;br&gt;color: #FFFFFF;&lt;br&gt;}&lt;br&gt;a:hover {&lt;br&gt;text-decoration: none;&lt;br&gt;color: #FFFFFF;&lt;br&gt;}&lt;br&gt;a:active {&lt;br&gt;text-decoration: none;&lt;br&gt;color: #FFFFFF;&lt;br&gt;}&lt;br&gt;&lt;br&gt;&lt;/STYLE&gt;[/code]&lt;BR&gt;&lt;BR&gt;Basically it changes the colour of all of the links (not just the pics again) to white. If you have a different coloured background then obviously use the same colour as it! It makes the links seem 'invisible' Like I said not very elegant :)&lt;BR&gt;</description><pubDate>Thu, 16 Feb 2006 18:53:02 GMT</pubDate><dc:creator>Tom Morton</dc:creator></item><item><title>RE: HTML Diploma test</title><link>http://forum.micromart.co.uk/Topic88981-51-1.aspx</link><description>I've been racking my brain cell trying to remember how to do this. I've looked through all my old notes and a couple of books and e-mailed a couple of mates. I'm going to keep looking; in the meantime if you do find out could you possibly post the answer here?&lt;br&gt;Thanks!</description><pubDate>Thu, 16 Feb 2006 08:29:01 GMT</pubDate><dc:creator>cartoony</dc:creator></item><item><title>HTML Diploma test</title><link>http://forum.micromart.co.uk/Topic88981-51-1.aspx</link><description>Ok so I've started on the assignment and all is going well. However when I place a hyperlink on my gallery picture it turns the outline purple which really screws up the overall image of my page. Obviously I could just make the text under the image linked to a bigger image but ideally I would like to make the whole data cell (picture and text) a hyperlink to the new window but without affecting the colour.&lt;P&gt;Help please!&lt;/P&gt;&lt;P&gt;:D</description><pubDate>Mon, 13 Feb 2006 13:06:43 GMT</pubDate><dc:creator>Novice User</dc:creator></item></channel></rss>