I tried adding that, but it didn't seem to have any effect :(

On May 22, 12:05 am, Kerri <[email protected]> wrote:
> Try adding
>
> display: inline-block
>
> And see if that helps? Otherwise the anchor is just an inline element, and
> certain styles won't apply the same way to it as it would to a block
> element (like a DIV).
>
>
>
> On Monday, May 21, 2012 4:42:23 PM UTC-5, sblair wrote:
>
> > Ok, I've made some progress with this following what you said.  I'm
> > still having a hard time trying to figure out how to get it to
> > actually use a button graphic though.  Here's the CSS I have right now
> > that I mostly copied from the .button css and then made changes to
> > colors and sizes.  I've tried various methods at referencing the
> > button.png files as you can see with the css below, but nothing seems
> > to work.
>
> > Suggestions?
>
> > .row > .rightButton {
> >     -webkit-border-image: url(grayButton.png) 0 12 0 12;
> >     position: absolute;
> >     overflow: hidden;
> >     top: 8px;
> >     right: 6px;
> >     margin: 0;
> >     border-width: 0 5px;
> >     padding: 0 3px;
> >     width: auto;
> >     height: 30px;
> >     line-height: 30px;
> >     font-family: inherit;
> >     font-size: 18px;
> >     font-weight: bold;
> >     color: #0000FF;
> >     text-shadow: rgba(0, 0, 0, 0.6) 0px -1px 0;
> >     text-overflow: ellipsis;
> >     text-decoration: none;
> >     white-space: nowrap;
> >     background: #d6d4d5;
> > }
>
> > On Apr 27, 1:09 am, Remi Grumeau  <[email protected]> wrote:
> > > that was a quick solution, as i said earlier, you need some custom css
> > to do what you are trying to archieve with this nudge button.
>
> > > <a href=link_to_the_panel class="rightButton">nudge</a>
>
> > > and on the css side
>
> > > body > .panel > .row > .rightButton {
> > > ...
> > > // custom css
> > > ...
>
> > > }
>
> > > Remi
>
> > > On 27 avr. 2012, at 03:35 AM, sblair <[email protected]> wrote:
>
> > > > Hey Remi,
>
> > > > I'm not sure if I'm totally following.  On that row I already have an
> > > > Input field so I need to be able to click on the input field to enter
> > > > a number directly, so I can't really do any onclick events there.
> > > > That field is placed in the center of the row though.  On the right
> > > > side of the same row I need to have a slider arrow or even a button
> > > > that takes me to a subpage when clicked there.  If you look at the
> > > > image in my first post, you can see this where I have just a plain
> > > > link that says "Nudge".
>
> > > > Thanks.
> > > > Scott
>
> > > > On Apr 24, 4:13 pm, Remi Grumeau <[email protected]> wrote:
> > > >> What about just an onclick event on the input?
> > > >> That might be the only easy solution i would see...
>
> > > >> <div class="row">
> > > >>   <label>Horiz Position</label>
> > > >>   <input name="textImageProInputHorizPosition" type="number"
> > min="-100.0"
> > > >> max="1000.0" step="1" value="<!--FUNCTIONCALL
> > WebIProInputHorizPosition
> > > >> -->"  size="6" maxlength="6" align="right" id="horiz_pos_val"
> > > >>  onclick="iui.showPageById('horiz_change')">
> > > >> </div>
>
> > > >> with another screen being
>
> > > >> <ul id="horiz_change" title="Horiz Position">
> > > >>   <li><a href="javascript:document.getElementById('
> > > >> horiz_pos_val').value=0;iui.goBack()">0</a></li>
> > > >>   <li><a
> > href="javascript:document.getElementById('horiz_pos_val').value=1
> > > >> ;iui.goBack()">1</a></li>
> > > >>   <li><a
> > href="javascript:document.getElementById('horiz_pos_val').value=2
> > > >> ;iui.goBack()">2</a></li>
> > > >>   <li><a
> > href="javascript:document.getElementById('horiz_pos_val').value=3
> > > >> ;iui.goBack()">3</a></li>
> > > >> </ul>
>
> > > >> Quick test results the following:
> >http://we-are-gurus.com/labs/iui/sandbox/select-menu.html
>
> > > >> (even if i would use history.go(-1) instead of iui.goBack() but Sean
> > would
> > > >> disapprove...)
>
> > > >> Remi
>
> > > >> On Tue, Apr 24, 2012 at 8:21 PM, sblair <[email protected]> wrote:
> > > >>> Meh...  That's what I was afraid of.  Would it instead be possible
> > to
> > > >>> put a button on the same row there with the input field without much
> > > >>> trouble?  Instead of generating the slider arrow control, just
> > putting
> > > >>> a button there instead?
>
> > > >>> Thanks.
> > > >>> Scott- Hide quoted text -
>
> > > >> - Show quoted text -
>
> > > > --
> > > > You received this message because you are subscribed to the Google
> > Groups "iPhoneWebDev" group.
> > > > To post to this group, send email to [email protected].
> > > > To unsubscribe from this group, send email to
> > [email protected].
> > > > For more options, visit this group athttp://
> > groups.google.com/group/iphonewebdev?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"iPhoneWebDev" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/iphonewebdev?hl=en.

Reply via email to