Go to main content

Textpattern CMS support forum

You are not logged in. Register | Login | Help

#1 2006-12-21 08:01:07

jstubbs
Moderator
From: Hong Kong
Registered: 2004-12-13
Posts: 2,395
Website

One or two sites

Hi, we put up a couple of sites recently – some of them are still in test phase:

http://spaintennisacademy.com/ (some more work to be done still)
http://tsmg.no/ (not finished yet)
http://solborg.fhs.no/ (this one is more mature and been up a while)

I would like to hear any comments on the tsmg.no site – there is a drop down menu on the top nav bar, and I have heard there may be some issues viewing it in Windows. We use Macs so any info would be helpful.

Also, anyone come across a good screen shots site?

Last edited by hcgtv (2006-12-21 17:33:12)

Offline

#2 2006-12-21 10:02:50

RedFox
Member
From: Netherlands
Registered: 2005-03-25
Posts: 805
Website

Re: One or two sites

SiteVista

Last edited by RedFox (2006-12-21 10:03:32)

Offline

#3 2006-12-21 15:21:29

colak
Admin
From: Cyprus
Registered: 2004-11-20
Posts: 9,012
Website GitHub Mastodon Twitter

Re: One or two sites

mac user here… Try browsershots.org It’s free but sometimes sloooooow service.


Yiannis
——————————
NeMe | hblack.art | EMAP | A Sea change | Toolkit of Care
I do my best editing after I click on the submit button.

Offline

#4 2006-12-21 17:44:42

hcgtv
Plugin Author
From: Key Largo, Florida
Registered: 2005-11-29
Posts: 2,722
Website

Re: One or two sites

jstubbs,

spaintennisacademy – the Google ad seems too close to the search, also you could get rid of the border and make it blend with the site.

tsmg – drop down menu works fine on Firefox 2.0.0.1 and Opera 9.10, but doesn’t work on IE7.

solborg – nice integration of PunBB and PhotoPost.

Offline

#5 2006-12-21 18:18:16

jstubbs
Moderator
From: Hong Kong
Registered: 2004-12-13
Posts: 2,395
Website

Re: One or two sites

hcgtv wrote:

spaintennisacademy – the Google ad seems too close to the search, also you could get rid of the border and make it blend with the site.

tsmg – drop down menu works fine on Firefox 2.0.0.1 and Opera 9.10, but doesn’t work on IE7.

solborg – nice integration of PunBB and PhotoPost.

Thanks for that Bert.

Spain Tennis – yes, have to get around to the Google Ads – I saw its too close and I will get round to that tonight.

TSMG – any ideas why IE7 does not work? I don’t know much about issues with this browser – do you have IE6 for Windows to check? Would appreciate it.

Solborg – its actually easy to integrate. I know you are working on your own integration of PunBB and TXP. PhotoPost used to be more difficult in the earlier versions, now its better.

Thanks for the feedback!

Offline

#6 2006-12-21 18:20:34

jstubbs
Moderator
From: Hong Kong
Registered: 2004-12-13
Posts: 2,395
Website

Re: One or two sites

colak wrote:

mac user here… Try browsershots.org It’s free but sometimes sloooooow service.

Thanks Colak. I tried it, but it only seems to use Linux? It seems great if you want to see the basic design, but no use to see drop down menus, of course ;-)

Any browser shots site that uses Windows that you know of?

Offline

#7 2006-12-21 19:48:53

els
Moderator
From: The Netherlands
Registered: 2004-06-06
Posts: 7,458

Re: One or two sites

jstubbs wrote:

TSMG – any ideas why IE7 does not work? I don’t know much about issues with this browser – do you have IE6 for Windows to check? Would appreciate it.

IE6/Windows: dropdown doesn’t work. Fine in Opera 9.01 though.

Offline

#8 2006-12-21 19:52:39

colak
Admin
From: Cyprus
Registered: 2004-11-20
Posts: 9,012
Website GitHub Mastodon Twitter

Re: One or two sites

jstubbs wrote:

Thanks Colak. I tried it, but it only seems to use Linux? It seems great if you want to see the basic design, but no use to see drop down menus, of course ;-)

Just checked it you are right… I remember about a year ago they had windows browsers too…


Yiannis
——————————
NeMe | hblack.art | EMAP | A Sea change | Toolkit of Care
I do my best editing after I click on the submit button.

Offline

#9 2006-12-21 22:19:13

jstubbs
Moderator
From: Hong Kong
Registered: 2004-12-13
Posts: 2,395
Website

Re: One or two sites

Els wrote:

IE6/Windows: dropdown doesn’t work. Fine in Opera 9.01 though.

Bloody great. Does not work in IE6 or IE7. Are there some issues with either JavaScript or CSS drop downs that you know of?

Guess some googling is in order… :-(

Offline

#10 2006-12-22 09:01:36

jstubbs
Moderator
From: Hong Kong
Registered: 2004-12-13
Posts: 2,395
Website

Re: One or two sites

Looked into this drop down not working in IE and I can’t see what could be causing the problem. May I trouble someone to look at my code? I have checked the CSS is valid (it is according to Style Master) but not sure about the JavaScript, which is from Son of Suckerfish:

#nav, #nav ul { /* all lists */ padding: 5px 0; margin: 0; list-style: none; line-height: 1;
}

#nav a { display: block; padding: 10px 0; width: auto; text-decoration: none;
}

#nav li { /* all list items */ float: left; padding: 2px; width: auto; /* width needed or else Opera goes nuts */
}

#nav li li { /* sub menu li */ width: 10em; /* width for submenu list */
}

#nav li ul { /* second-level lists */ position: absolute; background: #ccc9c4; width: 10em; left: -999em; /* using left instead of display to hide menus because display: none isn’t read by screen readers */
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */ left: auto; background: #ccc9c4;
}

#nav li li a:hover, #nav li li.sfhover { color: #fff;
}

<code>
<script type=“text/javascript”><!—//—><![CDATA[//><!—

sfHover = function() { var sfEls = document.getElementById(“nav”).getElementsByTagName(“LI”); for (var i=0; i<sfEls.length; i++) { sfEls[i].onmouseover=function() { this.className+=” sfhover”; } sfEls[i].onmouseout=function() { this.className=this.className.replace(new RegExp(” sfhover\\b”), “”); } }
}
if (window.attachEvent) window.attachEvent(“onload”, sfHover);

//—><!]]></script>
</code>

Offline

#11 2006-12-22 09:19:14

jstubbs
Moderator
From: Hong Kong
Registered: 2004-12-13
Posts: 2,395
Website

Re: One or two sites

Just found this site:

http://www.cssplay.co.uk/menus/drop_examples.html

Drop down menus using only CSS. Nice. Possibly an option to using JavaScript?

Offline

#12 2006-12-22 13:50:10

hcgtv
Plugin Author
From: Key Largo, Florida
Registered: 2005-11-29
Posts: 2,722
Website

Re: One or two sites

jstubbs wrote:

Looked into this drop down not working in IE and I can’t see what could be causing the problem.

I came across a similar problem on the template I’m using for my wiki, the drop down menus didn’t work in IE6 but started working in IE7. The CSS uses a similar hover technique and the author pointed to this site that explained the issue and a workaround for IE.

Offline

Board footer

Powered by FluxBB