-within-a- of a table inside
another table is already overkill in my book). Starting over wouldn't be
bad.
And I don't know what you mean by "active" buttons; aren't they all?
GL
--
John
Pondering the value of the UIP: http://improve-usenet.org/
Re: Help needed with css buttonam 25.09.2007 00:49:40 von dorayme
In article <1vqnchxkre6hh.dlg@ID-104726.news.individual.net>,
Jim S wrote:
> On this site www.jimscott.co.uk I use CSS to make my buttons. The trouble
> is that the number of characters determines the size of the button.
> I would like to make 'active' buttons on this site www.priorysingers.org.uk
> in the grey button section moving me from page to page. That is; I would
> like the button to be the same size whatever the text (of course assuming
> the text is not to big)
> OR am I confined to using graphics?
> Maybe javascript would do it, but I've never ventured there :o?
Hi Jim again,
If you were keen to do the minimum, you could try these changes:
div.buttons {
border: 2px outset #E8E8E8;
background: #E8E8E8;
color: black;
width: 400px;
margin: auto;
text-align: center;
}
a.button_links:link {
background: #E8E8E8;
color: black;
text-decoration: none;
font-family: Arial, Helvetica, sans-serif;
font-size: small;
font-weight: normal;
}
(I leave the visited etc to you)
and in the relevant html:
(There is trouble with your design and mark up, but I know from
before that you seek very practical help. BTW, Jim, I have a very
good friend who rings bells in Sydney and wherever she goes in
the world it is quite a community.)
--
dorayme
Re: Help needed with css buttonam 25.09.2007 00:53:15 von dorayme
In article <46f83da7_5@news.bluewin.ch>,
John Hosking wrote:
> Jim S wrote:
> > On this site www.jimscott.co.uk I use CSS to make my buttons. The trouble
> > is that the number of characters determines the size of the button.
> > I would like to make 'active' buttons on this site www.priorysingers.org.uk
> > in the grey button section moving me from page to page. That is; I would
> > like the button to be the same size whatever the text (of course assuming
> > the text is not to big)
>
> Try adding display:block; width:24em; margin:.6em auto; to your
> buttonise rulesets for http://www.jimscot.pwp.blueyonder.co.uk/ .
O, that's clever John. Less messing about than my suggestion...
Well done.
--
dorayme
Re: Help needed with css buttonam 25.09.2007 01:35:46 von Jim S
On Tue, 25 Sep 2007 00:44:37 +0200, John Hosking wrote:
> Jim S wrote:
>> On this site www.jimscott.co.uk I use CSS to make my buttons. The trouble
>> is that the number of characters determines the size of the button.
>> I would like to make 'active' buttons on this site www.priorysingers.org.uk
>> in the grey button section moving me from page to page. That is; I would
>> like the button to be the same size whatever the text (of course assuming
>> the text is not to big)
>
> Try adding display:block; width:24em; margin:.6em auto; to your
> buttonise rulesets for http://www.jimscot.pwp.blueyonder.co.uk/ .
>
> Similar approach for the http://www.priorysingers.org.uk/ site (although
> the -within-a--within-a- -within-a- of a table inside
> another table is already overkill in my book). Starting over wouldn't be
> bad.
>
> And I don't know what you mean by "active" buttons; aren't they all?
>
> GL
Thanks John.
They weren't really buttons in the 'priory' site so they weren't active
like mine.
Is there any way of centralising the text in the box you suggested?
--
Jim S
Tyneside UK
www.jimscott.co.uk
Re: Help needed with css buttonam 25.09.2007 04:23:27 von lws4art
Jim S wrote:
> On Tue, 25 Sep 2007 00:44:37 +0200, John Hosking wrote:
>
>> Try adding display:block; width:24em; margin:.6em auto; to your
>> buttonise rulesets for http://www.jimscot.pwp.blueyonder.co.uk/ .
>>
>> Similar approach for the http://www.priorysingers.org.uk/ site (although
>> the -within-a--within-a- -within-a- of a table inside
>> another table is already overkill in my book). Starting over wouldn't be
>> bad.
>>
>> And I don't know what you mean by "active" buttons; aren't they all?
>>
>> GL
>
> Thanks John.
> They weren't really buttons in the 'priory' site so they weren't active
> like mine.
> Is there any way of centralising the text in the box you suggested?
add text-align: center;
This might help you in your further exploration:
http://www.w3.org/TR/CSS21/propidx.html
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Re: Help needed with css buttonam 25.09.2007 11:32:07 von Jim S
On Mon, 24 Sep 2007 22:23:27 -0400, Jonathan N. Little wrote:
> Jim S wrote:
>> On Tue, 25 Sep 2007 00:44:37 +0200, John Hosking wrote:
>>
>
>
>>> Try adding display:block; width:24em; margin:.6em auto; to your
>>> buttonise rulesets for http://www.jimscot.pwp.blueyonder.co.uk/ .
>>>
>>> Similar approach for the http://www.priorysingers.org.uk/ site (although
>>> the -within-a--within-a- -within-a- of a table inside
>>> another table is already overkill in my book). Starting over wouldn't be
>>> bad.
>>>
>>> And I don't know what you mean by "active" buttons; aren't they all?
>>>
>>> GL
>>
>> Thanks John.
>> They weren't really buttons in the 'priory' site so they weren't active
>> like mine.
>> Is there any way of centralising the text in the box you suggested?
>
> add text-align: center;
>
> This might help you in your further exploration:
> http://www.w3.org/TR/CSS21/propidx.html
Thanks AND vertical-align: middle; too.
BUT although the horizontal one works in IE, the vertical one does not :o(
--
Jim S
Tyneside UK
www.jimscott.co.uk
Re: Help needed with css buttonam 25.09.2007 17:02:17 von lws4art
Jim S wrote:
> On Mon, 24 Sep 2007 22:23:27 -0400, Jonathan N. Little wrote:
>>
>> This might help you in your further exploration:
>> http://www.w3.org/TR/CSS21/propidx.html
>
> Thanks AND vertical-align: middle; too.
> BUT although the horizontal one works in IE, the vertical one does not :o(
If you look at the link I provided your will see that vertical-align:
applies to inline-level and 'table-cell' elements
http://www.w3.org/TR/CSS21/visudet.html#propdef-vertical-ali gn
of which DIV are not a member. Now you could apply display: table-cell;
to the DIV or A, *but* (did you guess correctly?) don't expect MSIE to
accommodate. If your texts it only only line then setting the block's
height=line-height will do what you wish...
"http://www.w3.org/TR/html4/strict.dtd">
vertical center
Let's try to make a button for you:
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Re: Help needed with css buttonam 25.09.2007 17:33:55 von Jim S
On Tue, 25 Sep 2007 11:02:17 -0400, Jonathan N. Little wrote:
> Jim S wrote:
>> On Mon, 24 Sep 2007 22:23:27 -0400, Jonathan N. Little wrote:
>
>>>
>>> This might help you in your further exploration:
>>> http://www.w3.org/TR/CSS21/propidx.html
>>
>> Thanks AND vertical-align: middle; too.
>> BUT although the horizontal one works in IE, the vertical one does not :o(
>
> If you look at the link I provided your will see that vertical-align:
> applies to inline-level and 'table-cell' elements
>
> http://www.w3.org/TR/CSS21/visudet.html#propdef-vertical-ali gn
>
> of which DIV are not a member. Now you could apply display: table-cell;
> to the DIV or A, *but* (did you guess correctly?) don't expect MSIE to
> accommodate. If your texts it only only line then setting the block's
> height=line-height will do what you wish...
>
>
> "http://www.w3.org/TR/html4/strict.dtd">
>
>
>
>
>
> vertical center
>
>
>
>
>
>
> Let's try to make a button for you:
>
>
>
>
Thanks Jonathan
I can do all that, but of course when I do, the one word buttons are only
the height of the word and two longer words are twice as high.
If I make the button 48px high then the single word stays at the top in IE
regardless of the vertical-align: middle; command.
To make matters even worse Firefox totally disregards the dimensions
altogether and displays the button in a single line or varying length.
What I am after is a button version of the grey boxes in
www.priorysingers.org.uk
--
Jim S
Tyneside UK
www.jimscott.co.uk
Re: Help needed with css buttonam 25.09.2007 19:14:39 von Jim S
OK I'm nearly there.
Using a different stylesheets for one-line and two-line buttons I have
got to this http://priorysingers.org.uk/testingIndex_1.html
It works fine in IE, but not in Firefox or Opera.
--
Jim S
Tyneside UK
www.jimscott.co.uk
Re: Help needed with css buttonam 25.09.2007 20:22:41 von lws4art
Jim S wrote:
> OK I'm nearly there.
> Using a different stylesheets for one-line and two-line buttons I have
> got to this http://priorysingers.org.uk/testingIndex_1.html
> It works fine in IE, but not in Firefox or Opera.
Well I would avoid "position: absolute" if I were you, can get you into
trouble. Personally your links are in a list so I would use a list!
You just set their width and if your want the links centered vertically
you can tweak the single line links...
"http://www.w3.org/TR/html4/strict.dtd">
template
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Re: Help needed with css buttonam 25.09.2007 21:30:17 von Jim S
On Tue, 25 Sep 2007 14:22:41 -0400, Jonathan N. Little wrote:
> Jim S wrote:
>> OK I'm nearly there.
>> Using a different stylesheets for one-line and two-line buttons I have
>> got to this http://priorysingers.org.uk/testingIndex_1.html
>> It works fine in IE, but not in Firefox or Opera.
>
> Well I would avoid "position: absolute" if I were you, can get you into
> trouble. Personally your links are in a list so I would use a list!
> You just set their width and if your want the links centered vertically
> you can tweak the single line links...
>
>
> "http://www.w3.org/TR/html4/strict.dtd">
>
>
>
>
> template
>
>
>
>
>
>
>
>
>
Mm. Tried that here http://priorysingers.org.uk/testingIndex.html
I reality I'm just back where I started,except the borders seem bevelled in
Firefox when they didn't before.
I still mean to get to moving buttons.
--
Jim S
Tyneside UK
www.jimscott.co.uk
Re: Help needed with css buttonam 25.09.2007 21:55:13 von lws4art
Jim S wrote:
> On Tue, 25 Sep 2007 14:22:41 -0400, Jonathan N. Little wrote:
>
>> Jim S wrote:
>>> OK I'm nearly there.
>>> Using a different stylesheets for one-line and two-line buttons I have
>>> got to this http://priorysingers.org.uk/testingIndex_1.html
>>> It works fine in IE, but not in Firefox or Opera.
>> Well I would avoid "position: absolute" if I were you, can get you into
>> trouble. Personally your links are in a list so I would use a list!
>> You just set their width and if your want the links centered vertically
>> you can tweak the single line links...
>>
>>
>> "http://www.w3.org/TR/html4/strict.dtd">
>>
>>
>>
>>
>> template
>>
>>
>>
>>
>>
>>
>>
>>
>>
>
> Mm. Tried that here http://priorysingers.org.uk/testingIndex.html
> I reality I'm just back where I started,except the borders seem bevelled in
Don't want the bevel then change
border: 3px outset #ccc; to border: 3px solid #000;
> Firefox when they didn't before.
You missed an important point, in my example the class "singles"
ul.buttonbar a.singles { margin-top: .65em; }
was ONLY applied to the links that were one line of text.
your "style1" (BTW bad name, style1 means nothing) that replaces my
"singles" you have applied to ALL your links including the 2 line
ones... to fix just remove from those...
> I still mean to get to moving buttons.
? Don't know what you mean by this.
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Re: Help needed with css buttonam 25.09.2007 22:02:28 von Jim S
8<
>>
>> Mm. Tried that here http://priorysingers.org.uk/testingIndex.html
>> I reality I'm just back where I started,except the borders seem bevelled in
>
> Don't want the bevel then change
>
> border: 3px outset #ccc; to border: 3px solid #000;
>
>> Firefox when they didn't before.
>
> You missed an important point, in my example the class "singles"
>
> ul.buttonbar a.singles { margin-top: .65em; }
>
> was ONLY applied to the links that were one line of text.
>
> your "style1" (BTW bad name, style1 means nothing) that replaces my
> "singles" you have applied to ALL your links including the 2 line
> ones... to fix just remove from those...
>
>
>
>
>> I still mean to get to moving buttons.
>
> ? Don't know what you mean by this.
Sorry I DO want the bevel, but my original set-up gave me a bevel in IE,
but not in Firefox or Opera. Your list method gave me bevels in Firefox,
but No buttons at all in Opera - just the text.
By moving buttons, what I mean is a button that APPEARS to depress when
clicked-on as my CSS buttons do in my own website.
--
Jim S
Tyneside UK
www.jimscott.co.uk
Re: Help needed with css buttonam 25.09.2007 22:21:24 von lws4art
Jim S wrote:
> I still mean to get to moving buttons.
Okay I think I know what you mean. You want to make the "buttons" to
look like they depress like real buttons. Well your can*
The '*' means of course MSIE will not cooperate without some hacks...
For real modern web browsers just add:
ul.buttonbar li:active { border-style: inset; }
All this does is when you mouse down on a link the parent LI's borders
swap from outset to inset style giving the appearance of a button.
Now MSIE will not work because it does not support :hover and :active
pseudo-classes on any elements other than A elements with HREF
attributes (i.e., links). So your either need to use some JavaScript
hack or use MSIE's special "behavior" property with their special HTC
file. I fine the latter easiest. You need to add a special class for IE
for the target element. The class name is "active" relating to the
pseudo-class "active" that other browser will use. I kept the names the
same to keep the purpose clear...
/* supporting browser will use this pseudo-class rule */
ul.buttonbar li:active { border-style: inset; }
/* MSIE will use this real class rule, not the '.' not ':' */
ul.buttonbar li.active { border-style: inset; }
/* use MSIE's special behavior to attach the HTC the LI elements */
ul.buttonbar li { behavior: url(IEFixes.htc); }
Here is the code for the HTC, plain text file named "IEFixes.htc" I
modified it to streamline a bit...
//--------------------------- start cut ---------------------------
// For MSIE use JScript to attach JS functions to compensate
// for missing pseudo-class support
// from Vladdy http://www.vladdy.net/Demos/IEPseudoClassesFix.html
// updated for html4.01 jnl 3/06
//---------------------------- end cut ----------------------------
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Re: Help needed with css buttonam 25.09.2007 22:27:35 von Jim S
On Tue, 25 Sep 2007 16:21:24 -0400, Jonathan N. Little wrote:
> Jim S wrote:
>
>> I still mean to get to moving buttons.
>
> Okay I think I know what you mean. You want to make the "buttons" to
> look like they depress like real buttons. Well your can*
>
> The '*' means of course MSIE will not cooperate without some hacks...
>
> For real modern web browsers just add:
>
> ul.buttonbar li:active { border-style: inset; }
>
> All this does is when you mouse down on a link the parent LI's borders
> swap from outset to inset style giving the appearance of a button.
>
> Now MSIE will not work because it does not support :hover and :active
> pseudo-classes on any elements other than A elements with HREF
> attributes (i.e., links). So your either need to use some JavaScript
> hack or use MSIE's special "behavior" property with their special HTC
> file. I fine the latter easiest. You need to add a special class for IE
> for the target element. The class name is "active" relating to the
> pseudo-class "active" that other browser will use. I kept the names the
> same to keep the purpose clear...
>
> /* supporting browser will use this pseudo-class rule */
> ul.buttonbar li:active { border-style: inset; }
>
> /* MSIE will use this real class rule, not the '.' not ':' */
> ul.buttonbar li.active { border-style: inset; }
>
> /* use MSIE's special behavior to attach the HTC the LI elements */
> ul.buttonbar li { behavior: url(IEFixes.htc); }
>
> Here is the code for the HTC, plain text file named "IEFixes.htc" I
> modified it to streamline a bit...
>
> //--------------------------- start cut ---------------------------
>
> // For MSIE use JScript to attach JS functions to compensate
> // for missing pseudo-class support
> // from Vladdy http://www.vladdy.net/Demos/IEPseudoClassesFix.html
> // updated for html4.01 jnl 3/06
>
>
>
>
>
>
> //---------------------------- end cut ----------------------------
Thanks Jonathan.
I'm going to take a break as me head hurts :o)
I know it's just fluff, but simple folk are easily impressed and it keeps
my brain ticking over.
--
Jim S
Tyneside UK
www.jimscott.co.uk
Re: Help needed with css buttonam 25.09.2007 22:31:27 von lws4art
Jim S wrote:
> Sorry I DO want the bevel, but my original set-up gave me a bevel in IE,
> but not in Firefox or Opera. Your list method gave me bevels in Firefox,
> but No buttons at all in Opera - just the text.
>
> By moving buttons, what I mean is a button that APPEARS to depress when
> clicked-on as my CSS buttons do in my own website.
Well see my followup post for details but your need a bevel if your want
to simulate the button press. Your buttons on http://www.jimscott.co.uk/
have a bevel. Can make it smaller...
Don't know what your problem is, my code works for all FF MSIE and Opera
here is demo again with smaller bevels... here it is again. NOTE you
will need to create the IEFixes.htc file in notepad that you can copy
from my other post in order for MSIE support.
"http://www.w3.org/TR/html4/strict.dtd">
template
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Re: Help needed with css buttonam 25.09.2007 22:50:38 von Jim S
On Tue, 25 Sep 2007 16:31:27 -0400, Jonathan N. Little wrote:
> Jim S wrote:
>
>> Sorry I DO want the bevel, but my original set-up gave me a bevel in IE,
>> but not in Firefox or Opera. Your list method gave me bevels in Firefox,
>> but No buttons at all in Opera - just the text.
>>
>> By moving buttons, what I mean is a button that APPEARS to depress when
>> clicked-on as my CSS buttons do in my own website.
>
> Well see my followup post for details but your need a bevel if your want
> to simulate the button press. Your buttons on http://www.jimscott.co.uk/
> have a bevel. Can make it smaller...
>
> Don't know what your problem is, my code works for all FF MSIE and Opera
> here is demo again with smaller bevels... here it is again. NOTE you
> will need to create the IEFixes.htc file in notepad that you can copy
> from my other post in order for MSIE support.
>
>
> "http://www.w3.org/TR/html4/strict.dtd">
>
>
>
>
> template
>
>
>
>
>
>
>
>
>
You got me going again.
Yes, that works in FF and Opera browsers.
Where exactly do I put the "public component" bit?
--
Jim S
Tyneside UK
www.jimscott.co.uk
Re: Help needed with css buttonam 26.09.2007 01:53:52 von a.nony.mous
Jim S wrote:
> Sorry I DO want the bevel, but my original set-up gave me a bevel in
> IE, but not in Firefox or Opera. Your list method gave me bevels in
> Firefox, but No buttons at all in Opera - just the text.
>
> By moving buttons, what I mean is a button that APPEARS to depress
> when clicked-on as my CSS buttons do in my own website.
You want buttons something like these of mine? They appear to depress
when hovered, then after going to the page, they are no longer a button,
... 'cause you're *there*!
http://freezeblock.com/
BTW, your page falls apart when I increase the text size so I can read
it (your buttons).
--
-bts
-Motorcycles defy gravity; cars just suck
Re: Help needed with css buttonam 26.09.2007 04:36:24 von Blinky the Shark
Beauregard T. Shagnasty wrote:
> Jim S wrote:
>
>> Sorry I DO want the bevel, but my original set-up gave me a bevel in
>> IE, but not in Firefox or Opera. Your list method gave me bevels in
>> Firefox, but No buttons at all in Opera - just the text.
>>
>> By moving buttons, what I mean is a button that APPEARS to depress
>> when clicked-on as my CSS buttons do in my own website.
>
> You want buttons something like these of mine? They appear to depress
> when hovered, then after going to the page, they are no longer a
> button, .. 'cause you're *there*!
>
> http://freezeblock.com/
Slick. Any reasonably popular/current browsers you've seen issues with,
with those?
--
Blinky RLU 297263
Killing all posts from Google Groups
The Usenet Improvement Project moved to this site August 28th:
http://improve-usenet.org
Re: Help needed with css buttonam 26.09.2007 05:03:36 von a.nony.mous
Blinky the Shark wrote:
> Beauregard T. Shagnasty wrote:
>> You want buttons something like these of mine? They appear to
>> depress when hovered, then after going to the page, they are no
>> longer a button, .. 'cause you're *there*!
>>
>> http://freezeblock.com/
>
> Slick. Any reasonably popular/current browsers you've seen issues
> with, with those?
No, can't say as I have. It seems to work fine in any CSS capable
browser. Even Internet Exploder. The 'no-button' on the 'current page'
is done with a small php common function, which displays only the text,
and no .
--
-bts
-Motorcycles defy gravity; cars just suck
Re: Help needed with css buttonam 26.09.2007 05:39:07 von Blinky the Shark
Beauregard T. Shagnasty wrote:
> Blinky the Shark wrote:
>
>> Beauregard T. Shagnasty wrote:
>>> You want buttons something like these of mine? They appear to
>>> depress when hovered, then after going to the page, they are no
>>> longer a button, .. 'cause you're *there*!
>>>
>>> http://freezeblock.com/
>>
>> Slick. Any reasonably popular/current browsers you've seen issues
>> with, with those?
>
> No, can't say as I have. It seems to work fine in any CSS capable
> browser. Even Internet Exploder. The 'no-button' on the 'current page'
> is done with a small php common function, which displays only the text,
> and no .
Ah! Thanks.
--
Blinky RLU 297263
Killing all posts from Google Groups
The Usenet Improvement Project moved to this site August 28th:
http://improve-usenet.org
Re: Help needed with css buttonam 26.09.2007 18:58:44 von Jim S
Finished for now
www.priorysingers.org.uk
Now to learn how to build without using tables as placeholders.
Thanks for your help.
--
Jim S
Tyneside UK
www.jimscott.co.uk
Re: Help needed with css buttonam 28.09.2007 09:20:36 von Adrienne Boswell
Gazing into my crystal ball I observed Jim S
writing in news:190p91n5wzp3x$.dlg@ID-104726.news.individual.net:
> Finished for now
> www.priorysingers.org.uk
> Now to learn how to build without using tables as placeholders.
> Thanks for your help.
One thing you might want to think about. Be sure to define a background
color that is the same as the background on images. I use a pale blue
background, and can see white backgrounds on images like squares on my
nice pale blue background.
--
Adrienne Boswell at Home
Arbpen Web Site Design Services
http://www.cavalcade-of-coding.info
Please respond to the group so others can share
Re: Help needed with css buttonam 28.09.2007 11:16:03 von Jim S
On Fri, 28 Sep 2007 07:20:36 GMT, Adrienne Boswell wrote:
> Gazing into my crystal ball I observed Jim S
> writing in news:190p91n5wzp3x$.dlg@ID-104726.news.individual.net:
>
>> Finished for now
>> www.priorysingers.org.uk
>> Now to learn how to build without using tables as placeholders.
>> Thanks for your help.
>
> One thing you might want to think about. Be sure to define a background
> color that is the same as the background on images. I use a pale blue
> background, and can see white backgrounds on images like squares on my
> nice pale blue background.
You are the first to mention that and it does not occur on my machine.
I'm sure I set the colours with the same code.
--
Jim S
Tyneside UK
www.jimscott.co.uk
Re: Help needed with css buttonam 28.09.2007 11:26:39 von Adrienne Boswell
Gazing into my crystal ball I observed Jim S
writing in news:1o2xpbqmz1gq8$.dlg@ID-104726.news.individual.net:
> You are the first to mention that and it does not occur on my machine.
http://tinyurl.com/2skgbk
It does not happen on your machine because you have your window
background color set to white. Mine is, as you can see, pale blue -
easier on my eyes.
> I'm sure I set the colours with the same code.
>
Hmm... nothing about the body element in the CSS... no you did not
define a background color, or color for the body element.
--
Adrienne Boswell at Home
Arbpen Web Site Design Services
http://www.cavalcade-of-coding.info
Please respond to the group so others can share
Re: Help needed with css buttonam 28.09.2007 11:34:42 von Jim S
On Fri, 28 Sep 2007 09:26:39 GMT, Adrienne Boswell wrote:
> Gazing into my crystal ball I observed Jim S
> writing in news:1o2xpbqmz1gq8$.dlg@ID-104726.news.individual.net:
>
>> You are the first to mention that and it does not occur on my machine.
>
> http://tinyurl.com/2skgbk
>
> It does not happen on your machine because you have your window
> background color set to white. Mine is, as you can see, pale blue -
> easier on my eyes.
>
>> I'm sure I set the colours with the same code.
>>
>
> Hmm... nothing about the body element in the CSS... no you did not
> define a background color, or color for the body element.
How about now?
--
Jim S
Tyneside UK
www.jimscott.co.uk
Re: Help needed with css buttonam 28.09.2007 11:43:53 von Adrienne Boswell
Gazing into my crystal ball I observed Jim S
writing in news:orh13c6u3lk0$.dlg@ID-104726.news.individual.net:
> On Fri, 28 Sep 2007 09:26:39 GMT, Adrienne Boswell wrote:
>
>> Gazing into my crystal ball I observed Jim S
>> writing in news:1o2xpbqmz1gq8$.dlg@ID-104726.news.individual.net:
>>
>>> You are the first to mention that and it does not occur on my
machine.
>>
>> http://tinyurl.com/2skgbk
>>
>> It does not happen on your machine because you have your window
>> background color set to white. Mine is, as you can see, pale blue -
>> easier on my eyes.
>>
>>> I'm sure I set the colours with the same code.
>>>
>>
>> Hmm... nothing about the body element in the CSS... no you did not
>> define a background color, or color for the body element.
>
> How about now?
Much better.
--
Adrienne Boswell at Home
Arbpen Web Site Design Services
http://www.cavalcade-of-coding.info
Please respond to the group so others can share
Re: Help needed with css buttonam 29.09.2007 02:27:54 von Bergamot
Jim S wrote:
> Finished for now
> www.priorysingers.org.uk
FYI, the navigation buttons overlap part of the content at my default
text size. Get rid of the absolute positioning and that problem should
disappear.
--
Berg
Re: Help needed with css buttonam 29.09.2007 04:16:23 von Blinky the Shark
Jim S wrote:
> Finished for now
> www.priorysingers.org.uk
> Now to learn how to build without using tables as placeholders.
> Thanks for your help.
http://blinkynet.net/stuff/comp/scott.jpg
--
Blinky RLU 297263
Killing all posts from Google Groups
The Usenet Improvement Project - http://improve-usenet.org
Re: Help needed with css buttonam 29.09.2007 05:40:02 von a.nony.mous
Blinky the Shark wrote:
> Jim S wrote:
>> Finished for now
>> www.priorysingers.org.uk
>> Now to learn how to build without using tables as placeholders.
>> Thanks for your help.
>
> http://blinkynet.net/stuff/comp/scott.jpg
My version: http://k75s.home.att.net/show/scott.jpg
I think it is the: |
In IE6 on my Winbox, the table of performances has no cell borders.
Makes reading it more difficult.
--
-bts
-Motorcycles defy gravity; cars just suck
Re: Help needed with css buttonam 29.09.2007 06:38:43 von Blinky the Shark
Beauregard T. Shagnasty wrote:
> Blinky the Shark wrote:
>
>> Jim S wrote:
>>> Finished for now
>>> www.priorysingers.org.uk
>>> Now to learn how to build without using tables as placeholders.
>>> Thanks for your help.
>>
>> http://blinkynet.net/stuff/comp/scott.jpg
>
> My version: http://k75s.home.att.net/show/scott.jpg
Yeah, I didn't inable FireBug or WebDev or anything. Probably
should've.
> I think it is the: |
Yeah. What's that about?
> In IE6 on my Winbox, the table of performances has no cell borders.
> Makes reading it more difficult.
Besides that, it's got something peculiar workin' here.
http://blinkynet.net/stuff/comp/scott02_ie6.jpg
Holy smokes! Does *that* ever need not-inline styling. Yikes!
--
Blinky RLU 297263
Killing all posts from Google Groups
The Usenet Improvement Project - http://improve-usenet.org
Re: Help needed with css buttonam 29.09.2007 09:02:24 von a.nony.mous
Blinky the Shark wrote:
> Beauregard T. Shagnasty wrote:
>> Notice the Firebug error as well:
>> "Unknown property 'behavior'. Declaration dropped."
>
> Yeah. What's that about?
It's called in the CSS.
/* attach HTC file for MSIE */
ul.buttonbar li {
behavior: url(IEFixes.htc);
}
...and is this file:
http://www.priorysingers.org.uk/IEFixes.htc
...but don't ask me why.
--
-bts
-Motorcycles defy gravity; cars just suck
Re: Help needed with css buttonam 29.09.2007 09:37:57 von Blinky the Shark
Beauregard T. Shagnasty wrote:
> Blinky the Shark wrote:
>
>> Beauregard T. Shagnasty wrote:
>>> Notice the Firebug error as well:
>>> "Unknown property 'behavior'. Declaration dropped."
>>
>> Yeah. What's that about?
>
> It's called in the CSS.
>
> /* attach HTC file for MSIE */
> ul.buttonbar li {
> behavior: url(IEFixes.htc);
> }
>
> ..and is this file:
> http://www.priorysingers.org.uk/IEFixes.htc
>
> ..but don't ask me why.
Some kinda IE hack?

// For MSIE use JScript to attach JS functions to compensate
// for missing pseudo-class support
// from Vladdy http://www.vladdy.net/Demos/IEPseudoClassesFix.html
// updated for html4.01 jnl 3/06
It's mouse stuff.
..but don't ask me why. :)
--
Blinky RLU 297263
Killing all posts from Google Groups
The Usenet Improvement Project - http://improve-usenet.org
Re: Help needed with css buttonam 29.09.2007 09:56:34 von a.nony.mous
Blinky the Shark wrote:
> Beauregard T. Shagnasty wrote:
>> ..and is this file:
>> http://www.priorysingers.org.uk/IEFixes.htc
>>
>> ..but don't ask me why.
>
> Some kinda IE hack?
>
> 
> // For MSIE use JScript to attach JS functions to compensate
> // for missing pseudo-class support
> // from Vladdy http://www.vladdy.net/Demos/IEPseudoClassesFix.html
> // updated for html4.01 jnl 3/06
>
>
>
> It's mouse stuff.
Did you visit the vladdy link? It actually does make hovers work in IE6
on other than , but does require JavaScript to be enabled.
> ..but don't ask me why. :)
Right. I don't recall seeing anything on the OP's site that actually
*requires* this hack.
--
-bts
-Motorcycles defy gravity; cars just suck
Re: Help needed with css buttonam 29.09.2007 13:07:30 von Jim S
On Sat, 29 Sep 2007 07:56:34 GMT, Beauregard T. Shagnasty wrote:
> Blinky the Shark wrote:
>
>> Beauregard T. Shagnasty wrote:
>>> ..and is this file:
>>> http://www.priorysingers.org.uk/IEFixes.htc
>>>
>>> ..but don't ask me why.
>>
>> Some kinda IE hack?
>>
>> 
>> // For MSIE use JScript to attach JS functions to compensate
>> // for missing pseudo-class support
>> // from Vladdy http://www.vladdy.net/Demos/IEPseudoClassesFix.html
>> // updated for html4.01 jnl 3/06
>>
>>
>>
>> It's mouse stuff.
>
> Did you visit the vladdy link? It actually does make hovers work in IE6
> on other than , but does require JavaScript to be enabled.
>
>> ..but don't ask me why. :)
>
> Right. I don't recall seeing anything on the OP's site that actually
> *requires* this hack.
Right. Here we go.
I am a not very good at creating websites, but I do try ,and came here for
help a week or so ago. (24-09-07)
I explained that on my own website I use CSS hyperlink buttons which give
the appearance of movement when clicked.
I did the Priory Singers Website a while back with static hyperlink buttons
and wish to make them behave in the same way as mine do except that they
should be a fixed shape rectangle which accommodates either one or two rows
of text AND that they should look and operate the same what ever browser is
used.
I was given the code you see ,and refer to above, which looks fine on my
machine and validates ok.
The IEFixes.htc bit which you will see I was given earlier in the thread
simulates the movement in IE, but is not needed for Firefox or Opera - but
I guess most folk who might access the site will use IE. It's a frippary I
know, but what the heck.
The only feedback I have received up until now was from someone telling me
that O had not specified a background colour in my index page UNTIL now.
I don't mind you're criticisms altho' they are a bit patronising, but I
would like your help as I am not good enough to put the mistakes right,
particularly because they were not originally mine.
--
Jim S
Tyneside UK
www.jimscott.co.uk
Re: Help needed with css buttonam 29.09.2007 15:51:18 von lws4art
Beauregard T. Shagnasty wrote:
> Blinky the Shark wrote:
>
>> Beauregard T. Shagnasty wrote:
>>> Notice the Firebug error as well:
>>> "Unknown property 'behavior'. Declaration dropped."
>> Yeah. What's that about?
>
> It's called in the CSS.
>
> /* attach HTC file for MSIE */
> ul.buttonbar li {
> behavior: url(IEFixes.htc);
> }
>
> ..and is this file:
> http://www.priorysingers.org.uk/IEFixes.htc
>
> ..but don't ask me why.
>
behavior is MS's proprietary CSS thingie. I use it to load IEFixes.htc
which is a JScript (yes JScript not JavaScript) bit that allows your to
use :hover and :active like pseudo classes on non-links with MSIE5+
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
| | | |