Re: [css-d] syntax: attribute selector on linked image

2016-03-28 Thread Karl DeSaulniers
it stand out a >> little more. >> >> Angela French >> >> -Original Message- >> From: css-d-boun...@lists.css-discuss.org >> [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of Karl DeSaulniers >> Sent: Friday, March 25, 2016 6:30 PM &g

Re: [css-d] syntax: attribute selector on linked image

2016-03-28 Thread Tom Livingston
> > -Original Message- > > From: css-d-boun...@lists.css-discuss.org [mailto: > > css-d-boun...@lists.css-discuss.org] On Behalf Of Chris Rockwell > > Sent: Friday, March 25, 2016 7:29 PM > > To: Karl DeSaulniers; CSS-D > > Subject: Re: [css-d] syntax

Re: [css-d] syntax: attribute selector on linked image

2016-03-28 Thread Chris Rockwell
.css-discuss.org [mailto: > css-d-boun...@lists.css-discuss.org] On Behalf Of Chris Rockwell > Sent: Friday, March 25, 2016 7:29 PM > To: Karl DeSaulniers; CSS-D > Subject: Re: [css-d] syntax: attribute selector on linked image > > Is this in an iFrame? Have you inspected th

Re: [css-d] syntax: attribute selector on linked image

2016-03-28 Thread Karl DeSaulniers
essage- > From: css-d-boun...@lists.css-discuss.org > [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of Karl DeSaulniers > Sent: Friday, March 25, 2016 6:30 PM > To: CSS-D > Subject: Re: [css-d] syntax: attribute selector on linked image > > Link? > >

Re: [css-d] syntax: attribute selector on linked image

2016-03-28 Thread Tom Livingston
, March 25, 2016 7:29 PM > To: Karl DeSaulniers; CSS-D > Subject: Re: [css-d] syntax: attribute selector on linked image > > Is this in an iFrame? Have you inspected the element with developer tools > to see what styles are being applied to it? Maybe yours are simply not >

Re: [css-d] syntax: attribute selector on linked image

2016-03-28 Thread Angela French
-boun...@lists.css-discuss.org] On Behalf Of Chris Rockwell Sent: Friday, March 25, 2016 7:29 PM To: Karl DeSaulniers; CSS-D Subject: Re: [css-d] syntax: attribute selector on linked image Is this in an iFrame? Have you inspected the element with developer tools to see what styles are being applied

Re: [css-d] syntax: attribute selector on linked image

2016-03-28 Thread Angela French
e it stand out a little more. Angela French -Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of Karl DeSaulniers Sent: Friday, March 25, 2016 6:30 PM To: CSS-D Subject: Re: [css-d] syntax: attribute selector on linked i

Re: [css-d] syntax: attribute selector on linked image

2016-03-25 Thread Chris Rockwell
line: 3px solid red; > > } > > > > span.ImageLink a{ > >border:3px solid black; > >margin-left:50px!important; > > } > > > > .twEDFooter { > >margin-bottom:20px; > > } > > > > -Original Message----- > &g

Re: [css-d] syntax: attribute selector on linked image

2016-03-25 Thread Karl DeSaulniers
0px!important; > } > > .twEDFooter { >margin-bottom:20px; > } > > -Original Message- > From: Philippe Wittenbergh [mailto:e...@l-c-n.com] > Sent: Thursday, March 24, 2016 5:48 PM > To: CSS-D > Cc: Angela French > Subject: Re: [css-d] syntax: attribute selector on l

Re: [css-d] syntax: attribute selector on linked image

2016-03-25 Thread Angela French
: CSS-D Cc: Angela French Subject: Re: [css-d] syntax: attribute selector on linked image > On Mar 25, 2016, at 01:56, Angela French <afre...@sbctc.edu> wrote: > > I am trying to write CSS that will apply top margin on an image that is used > as a back arrow button. The

Re: [css-d] syntax: attribute selector on linked image

2016-03-24 Thread Philippe Wittenbergh
> On Mar 25, 2016, at 01:56, Angela French wrote: > > I am trying to write CSS that will apply top margin on an image that is used > as a back arrow button. The generated html is as follows: > > > >

Re: [css-d] syntax: attribute selector on linked image

2016-03-24 Thread Karl DeSaulniers
Try... a[title^="Back to"] { display:inline-block; margin-top:20px; background-color:pink; /*test*/ } I switched it to a[title^="Back to"] so you could use it on a Back to Home or a Back to anything basically. Probably would be better to set an id or class and check that though.

Re: [css-d] syntax: attribute selector on linked image

2016-03-24 Thread Tom Livingston
On Thu, Mar 24, 2016 at 12:56 PM, Angela French wrote: > Hello, > I am trying to write CSS that will apply top margin on an image that is > used as a back arrow button. The generated html is as follows: > > > href="javascript:controller.navigateBack();"> >

[css-d] syntax: attribute selector on linked image

2016-03-24 Thread Angela French
Hello, I am trying to write CSS that will apply top margin on an image that is used as a back arrow button. The generated html is as follows: http://www.trumba.com/i/DgC4zgBAwusa93o2xKoNIHtu.gif?color=%2308799f;> I tried writing the CSS as: a[title="Back to Previous View"] img{