Matthew James Taylor

762
Reputation
738 views

Registered User

Name Matthew James Taylor
Member for 8 months
Seen Oct 31 at 2:23
Website
Location Sydney, Australia
Age
Artist / web designer
Nov
12
awarded  Popular Question
Sep
4
accepted (Simple) Are HTML script elements allowed to be external even when in the body?
Jul
31
asked Regex for dynamic goal page in Google Analytics
Jul
1
comment Are there any code libraries that validate/convert blog comments to XHTML strict?
Thanks elviejo, it looks like HTML Purifier is exactly what I need.
Jul
1
comment Are there any code libraries that validate/convert blog comments to XHTML strict?
Thanks jason but these are way too complicated - I need a very simple solution that doesn't need a menu of controls etc.
Jul
1
revised Are there any code libraries that validate/convert blog comments to XHTML strict?
deleted 1 characters in body
Jul
1
asked Are there any code libraries that validate/convert blog comments to XHTML strict?
Jul
1
comment CSS mouse-over overlapping tabs?
@Mark Yes, you need to make the anchor tags block and both the li and anchor tags should float to the left. If you float the li's to the right you will reverse the order of your tabs.
Jul
1
comment How do I centre n columns using CSS?
For the columns div to be centered in old versions of Internet Explorer you will also need to have a text-align:center; on the columns' parent element.
Jun
30
answered CSS mouse-over overlapping tabs?
Jun
30
comment How to keep an unordered list centered within the screen??
A list is used to list related things. the pipes "|" are not the things you are listing so they should be removed. You can add separators with background images or side borders on the other li elements
Jun
30
answered How to keep an unordered list centered within the screen??
Jun
30
comment Simple HTML that comes out looking way off?
I agree Chris, That's an awful lot of HTML there for such a simple layout. A HTML list would be much more appropriate.
Jun
29
comment How can I make just IE ignore a class?
Make sure you put the IE only CSS after the main CSS file otherwise it won't be overwritten.
Jun
26
answered Difference between @import and link in CSS
Jun
26
answered CSS, overflow with safari, chrome and IE 6
Jun
26
comment Dropdown menu, problem when resizing the browser
I think min-width is the best solution here +1
Jun
26
answered Dealing with Firefox and Internet Explorer’s Differences
Jun
25
answered How do you change a div with another div, onmouseover?
Jun
25
comment How can I make <li> elements flow left-to-right instead of top-to-bottom?
@Shore - Floating is probably best because then the elements are blocks which means you have more control over their styling.
Jun
24
comment HTML, PHP - Redirecting example.com/blogs to example.com/blogs.php
If you have the same content accessible on two different URLs you might want to use the new canonical link in your HTML head to prevent duplicate content issues. See this post by Matt Cutts for more info: mattcutts.com/blog/canonical-link-tag
Jun
23
comment How to get Floating DIVs inside fixed-width DIV to continue horizontally?
@Alex it's good to see a fellow Aussie on here! Thanks for the upvote ;)
Jun
23
comment How to get Floating DIVs inside fixed-width DIV to continue horizontally?
@Ron you may be right, a span version could be best except it may not be valid HTML to put block-level elements inside inline elements. See this question: stackoverflow.com/questions/746531/…
Jun
23
comment How to get Floating DIVs inside fixed-width DIV to continue horizontally?
Matt's original question stated that he wanted 'multiple floated divs' so a table solution is most probably not suitable.
Jun
19
answered Weird IE7 Problem
Jun
19
comment Div Alignment FireFox, IE7, IE6
This would be easy to do, what order do you want the divs to appear in the HTML source? can you number them?
Jun
19
comment Div Alignment FireFox, IE7, IE6
Down voted for using tables!
Jun
19
comment How to get Floating DIVs inside fixed-width DIV to continue horizontally?
Down voted for suggesting tables.
Jun
19
comment How to get Floating DIVs inside fixed-width DIV to continue horizontally?
Down voted for suggesting tables. It's not 1995!
Jun
19
comment How to get Floating DIVs inside fixed-width DIV to continue horizontally?
Inline-block is not supported by all browsers so it should never be used.
Jun
19
answered How to get Floating DIVs inside fixed-width DIV to continue horizontally?
Jun
16
comment Different dropdownlist component.
Thanks uzay95, yes it's my art :)
Jun
16
comment Need some help with understanding existing CSS Layout
Thanks Konrad, I couldn't have said that better myself.
Jun
4
accepted Different dropdownlist component.
Jun
4
comment is it true that HTML still has a role in page layout?
XHTML is actually a form of XML so it's probably best to stick with XHTML rather than pure XML
Jun
4
answered Add border on mouseover
Jun
3
comment How do I italicize text in HTML?
the <i> tag is depreciated because it's not semantic. It's best to use <em>.
Jun
3
comment Different dropdownlist component.
You can see a similar example on the thumbnails for my art gallery: matthewjamestaylor.com/art the info pops up above the thumbnail. This won't work in ie6 because it's a non-JavaScript solution - but you could make it work in all browsers by using the onmouseover and onmouseout as noted above.
Jun
3
comment Different dropdownlist component.
No, you don't need top:30px; because the bottom of the flyout div is positioned up 30px from the bottom of the select div. This makes the popup sit above the select div (this also means the arrow should point up not down :)
Jun
2
answered Different dropdownlist component.
Jun
2
answered Why do browsers insert tbody element into table elements?
Jun
2
comment CSS difference between 0 and 0em
So if you have a value of zero you should always omit the units because they are redundant.