[css-d] Boostrap menu

2016-04-14 Thread Russ Peters
Is it good practice to include an image for a logo inside of a bootstrap 3 navbar? The problem I'm having is that the logo is higher than the menu and my menu items are aligning vertically at the top which looks funny. (this is on our intranet so I can't send a link). I've tried to google how

[css-d] FW: IE 10 issue

2014-04-28 Thread Russ Peters
Have an issue with the fieldset not expanding to contain the radgrid. It is working as expected in Chrome, but I need it to work in IE. Any suggestions? I'm also not able to get rounded corners on the fieldset in IE. CSS: fieldset{margin-bottom: 10px;width: 65%; border-top-left-radius:5px;bo

[css-d] IE 10 issue

2014-04-28 Thread Russ Peters
Have an issue with the fieldset not expanding to contain the radgrid. It is working as expected in Chrome, but I need it to work in IE. Any suggestions? I'm also not able to get rounded corners on the fieldset in IE. CSS: fieldset{margin-bottom: 10px;width: 65%; border-top-left-radius:5px;b

[css-d] HTML5 Validation

2012-07-01 Thread Russ Peters
I'm trying to build my first HTML5 web form but I need it to validate in IE as well, so I'm stuck trying to figure out how do that. So, in doing some google research I've decided that I need to use something called a "polyfill", specifically in this case I've chosen the H5Validate option. I've

Re: [css-d] Button creation

2012-06-28 Thread Russ Peters
Thank you all for the really creative and informative responses to this. This list rocks. I’ll soak in some of what you all have said and see what I come up with. Have learned a few new things to go research. Russ This electronic mail message and attachments (if any) are confidential and l

[css-d] Button creation

2012-06-27 Thread Russ Peters
Hi Folks, I'm working on designing a button style for all web forms on our site. Our marketing dept created some buttons made from images and they'd like the web form buttons to look similar. My quick question to you all is it possible to make this in CSS? The image can be found here: http:/

[css-d] Class working everywhere but IE

2012-01-24 Thread Russ Peters
I have a class called "tagline" that is located in the css file here: http://www.redcanoecu.com/_css/global.css It's located in the /*Header*/ section. The problem is that when you go to our site: http://www.redcanoecu.com then try and login to Online Banking the tagline "your dreams our passio

Re: [css-d] iframes - who still uses them

2007-07-02 Thread Russ Peters
> > Hi, > > Looking at the last post it got me thinking. Does anyone still use frames > or iframes? Is it a valid development technique? > > > R. We are using an iframe on our homepage to incorporate a secure page for login purposes. I will say that this has proved to be a challenge with the

[css-d] Printing question

2006-12-28 Thread Russ Peters
One of our sites using frames. The top frame is the menu/navigation bar/logo area. The bottom frame is where all the magic happens. What I need is a way to force the bottom frame to print always and hide or do not display the top frame at all. I can't give you a url as it's a login only site (

Re: [css-d] Printing problem

2006-12-22 Thread Russ Peters
> Hi Russ, > About the css-validation: I always see this kind of message if the > (x)html is not validating. While your page is validating now, I suspect > it is something with the https-connection, that the css-validator cannot > handle. > Anyway, a direct call to the css-validator is working: no

Re: [css-d] Printing problem

2006-12-21 Thread Russ Peters
> > Russ Peters wrote: > > >https://www.redcanoecu.com/applications/data/Peters5935.htm (example) > >https://www.redcanoecu.com/applications/loan.asp (initial form) > > > >The page looks fine when viewed on the screen but if you do a print > >preview or act

Re: [css-d] Printing problem

2006-12-21 Thread Russ Peters
I apologize, it appeared that we didn't have the SSL port open to that server yet. Should be good to go now. Russ > -Original Message- > From: francky [mailto:[EMAIL PROTECTED] > Sent: Wednesday, December 20, 2006 7:59 PM > To: Russ Peters > Cc: css-d@lists.css-d

[css-d] Printing problem

2006-12-20 Thread Russ Peters
Want to know if someone would take a look at this. What I'm doing is writing an html file to the web server after a form is submitted. Then an email is generated that contains just a secure link to the page that was written to the server. The page looks fine when viewed on the screen but if yo

Re: [css-d] Form layout

2006-12-15 Thread Russ Peters
> On Dec 15, 2006, at 11:46 AM, Russ Peters wrote: > > >>(2) The selection menus for States and Raiders are not > >> accessible without using a mouse on some browsers. (Safari works > >> okay, not sure yet about IE, but no-go on Firefox). Also the radio

Re: [css-d] Form layout

2006-12-15 Thread Russ Peters
> At 1:56 PM -0800 12/14/06, Russ Peters wrote: > >Can you take a look at my progress on this form and let me know if I'm > >headed down the right path for a nice looking layout here? Alignment > >and style on forms have always challenged me. > > > >

Re: [css-d] Form layout

2006-12-15 Thread Russ Peters
> > Some designs have every label on top and left aligned above each text > > field. This obviously makes a long form even longer which is why I > > opted to put them to the left of each field. > > > > Anyone have any suggestions or advice? Am I headed down the right path > > here? > > > > http://

[css-d] Form layout

2006-12-14 Thread Russ Peters
Can you take a look at my progress on this form and let me know if I'm headed down the right path for a nice looking layout here? Alignment and style on forms have always challenged me. What is the best alignment for labels? I have them right aligned right now next to the form fields with all f

Re: [css-d] Div show/hide

2006-12-12 Thread Russ Peters
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mark > J. Reed > Sent: Monday, December 11, 2006 8:57 PM > To: Andy Pemberton > Cc: Russ Peters; css-d@lists.css-discuss.org > Subject: Re: [css-d] Div show/hide > > Seen th

[css-d] Div show/hide

2006-12-12 Thread Russ Peters
I'm using the following to show/hide a div when I click on a hyperlink: function ShowHideLayer(divID) { var box = document.getElementById(divID); if(box.style.display == "none" || box.style.display=="") { box.style.display = "block";

[css-d] Div show/hide

2006-12-11 Thread Russ Peters
I'm using the following to show/hide a div when I click on a hyperlink: function ShowHideLayer(divID) { var box = document.getElementById(divID); if(box.style.display == "none" || box.style.display=="") { box.style.display = "block";

Re: [css-d] vertical space issue in IE 6 & 7 [ was: Lost in space?]

2006-11-28 Thread Russ Peters
> > Russ Peters wrote: > > The topnav div in the header portion of my layout was aligned and > > working wonderfully until I added the code to make the form work for the > > search boxtrimmed] > > > Try, adding this to the style sheet: > form { margin-top

[css-d] Lost in space?

2006-11-28 Thread Russ Peters
The topnav div in the header portion of my layout was aligned and working wonderfully until I added the code to make the form work for the search box. All I had there when it was looking it's best was the input box. Once I added the tags and added the submit script to the hyperlink on the go lin

Re: [css-d] Textarea - text cursor problem

2006-11-25 Thread Russ Peters
> I am experiencing a problem with the textarea element. Dinamically I > create > a textarea and set its value, its just that the text cursor does not > blink, > no matter what. Actually, Its blinks only when I click in the first word > of > each line. Without being able to see your page or the t

[css-d] FW: Alignment issue

2006-11-22 Thread Russ Peters
The padding on the #main div worked beautifully to move the article boxes up enough to seperate them from the footer. I also moved the location of the #obloginwrapper (online banking login window) in the code so that it loads after both articles and small ads. Just seems to be a better fit a

[css-d] Alignment issue

2006-11-22 Thread Russ Peters
I have two div's for article boxes that I have defined specifically to be 22em wide and 20em's high. I have defined a height for these to control how big the boxes look by default on the screen (they both have to be the same no matter how much content is in them). My problem is that there is a