Re: [css-d] Background-Image overrides background color

2015-01-11 Thread Wade Smart
w3school is at the top for so many searches. It would be great if they would just clean up their site. -- Registered Linux User: #480675 Registered Linux Machine: #408606 Linux since June 2005 On Sun, Jan 11, 2015 at 10:30 AM, Barney Carroll barney.carr...@gmail.com wrote: I'm amazed it took

Re: [css-d] Image and background colour changes on hover.

2013-05-13 Thread Wade Smart
a id=MT href=index.phpspan Montana (MT)/span/a MT:hover { background: url(states/mt-usa.gif) no-repeat; width: 540px; height: 350px; position: absolute; top: 0px; left: 0px; z-index: 0; } This is just css. Its a hover. NO javascript needed at all. Wade

Re: [css-d] Top gap

2013-05-13 Thread Wade Smart
-- Registered Linux User: #480675 Registered Linux Machine: #408606 Linux since June 2005 On Mon, May 13, 2013 at 4:01 PM, Brian M. Curran br...@draftingservices.com wrote: Hi! I can't get the last sentence -More project samples can be found here - on my portfolio page here:

Re: [css-d] printing parts of a page.

2013-03-01 Thread Wade Smart
Philippe I finally got it figured out. Little testing helped out :D __ css-discuss [css-d@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies --

[css-d] printing parts of a page.

2013-02-28 Thread Wade Smart
I have a div, unfortunately down lower on the page, that Im printing off. When it prints, it starts printing about half way down the page. Short of creating another page just to print from, is there a way to pull the data up the page? wade -- Registered Linux User: #480675 Registered Linux

Re: [css-d] printing parts of a page.

2013-02-28 Thread Wade Smart
...@gmail.com wrote: Is there anything above the div that you need printed? If not, try a print style that hides anything above the desired div or if nothing is above it, make a print style to pull the div back up the page. HTH Sent from my iPhone On Feb 28, 2013, at 8:26 PM, Wade Smart wadesm

Re: [css-d] Place LinkedIn, Facebook likes side-by-side?

2012-07-23 Thread Wade Smart
Hmmm They are side by side. -- Registered Linux User: #480675 Registered Linux Machine: #408606 Linux since June 2005 On Mon, Jul 23, 2012 at 5:32 PM, Chris Morton salt.mor...@gmail.com wrote: Please look at the bottom of www.eigen.com. How can I position the Facebook Like and LinkedIn

Re: [css-d] Lightbox gallery with CSS

2011-09-13 Thread Wade Smart
On Tue, Sep 13, 2011 at 14:25, Chetan Crasta chetancra...@gmail.com wrote: Here is one example: http://www.cssplay.co.uk/menu/css3-keyframe-lightbox.html Here is another example that works in more browsers: http://www.cssplay.co.uk/menu/lightbox-click.html However, it did not work in

Re: [css-d] validation error on closing /head tag

2011-05-30 Thread Wade Smart
On 05/30/2011 05:01 PM, Janis Rough wrote: I'm getting an error upon validating this page. It says end tag for head is not closed. Since I do have a/head tag it is something else probably with the meta tag but I'm not clear on what it is. Thanks !DOCTYPE html PUBLIC -//W3C//DTD XHTML

Re: [css-d] Centering Up Text

2011-01-28 Thread Wade Smart
On 01/28/2011 02:09 AM, 李硕 wrote: Maybe this will help: remove the float:left from the #nav a.ot and add it to the li element immediately out of the a element then add display: table-cell;vertical-align: middle;text-align: center; to the #nav a.ot otherwise, see this page I've made

[css-d] Centering Up Text

2011-01-27 Thread Wade Smart
http://theaterbartlesville.com/testing/Live/ Ive gone back and forth on this issue. Originally this nav bar called for images to be used but I used text instead. The text is at the top of the li. I have tried a few things trying to get the text off the top of the page and center it up. Ive

[css-d] Doubling of an element.

2011-01-24 Thread Wade Smart
http://theaterbartlesville.com/testing/Live/index.php?p=main Im helping the local theatre fix a problem with their site. The person they hired create a really nice design but left it unfinished. So Im helping out. So, above is the page. What is supposed to look like is, this is the top nav

[css-d] Keeping the footer at the bottom

2010-01-18 Thread Wade Smart
Im trying to do something that I know is done every day but for the life of me, I cant figure it out. |___Top Div| | Middle Div__| |---|--| |..left.|..right...| | | | |--| |...footer.| Simple layout. Top div has the header, etc.

Re: [css-d] Nav element is dropped in IE

2009-10-20 Thread Wade Smart
G. Sørtun wrote: Wade Smart wrote: My friend called about her web site having an issue. She said a button has dropped. http://www.bartlesvillehomefinder.net/ Zero out default margins and paddings on the ul... ul {padding: 0; margin: 0;} regards Georg Thanks Georg. I

[css-d] Nav element is dropped in IE

2009-10-19 Thread Wade Smart
My friend called about her web site having an issue. She said a button has dropped. http://www.bartlesvillehomefinder.net/ If you look at this page in IE version 8, the Contact Us button is dropped. I have been playing with it but Im not finding the solution - just making it worse. Wade --

Re: [css-d] Creating css Tables with vertical text

2009-05-31 Thread Wade Smart
David Dorward wrote: 2009/5/30 Wade Smart wadesm...@gmail.com: 20090530 1600 GMT-5 Im wanting to create a table to hold the soccer states for the adult league (I play in). Im using a table to hold the data but, Im short on horizontal space so I wanted to turn the text from horizontal to say

[css-d] Creating css Tables with vertical text

2009-05-30 Thread Wade Smart
20090530 1600 GMT-5 Im wanting to create a table to hold the soccer states for the adult league (I play in). Im using a table to hold the data but, Im short on horizontal space so I wanted to turn the text from horizontal to say almost vertical on its side -- like in a spreadsheet. Anyone

[css-d] Change background color

2009-05-28 Thread Wade Smart
20090528 1910 GMT-5 I have a php if statement to set my menu buttons as active: if (ID == home){ print'li class=activea href=navMenu.phpnow/a/linbsp;'; } else { print 'lia href=navMenu.phpnow/a/linbsp;'; } My css: #navlist ul { margin-left:0; margin-top:5px;

Re: [css-d] Change background color

2009-05-28 Thread Wade Smart
Alan Gresley wrote: Wade Smart wrote: [..] #navlist a:hover { background-color:#55; color:#FF; text-decoration:none; } .active { background-color: #55;} I have tried adding #navlist and various pre elements to teh .active but I just cant seem to get

Re: [css-d] Change background color

2009-05-28 Thread Wade Smart
David Laakso wrote: David Laakso wrote: Wade Smart wrote: I have tried adding #navlist and various pre elements to teh .active but I just cant seem to get the background to change when its active. Wade Strip it to only the essentials and it will work (note: no class used). css

[css-d] css list test message

2009-04-09 Thread Wade Smart
20090409 1636 GMT-6 Im just sending this to the list to see if any of my posts show up. I have sent 8 in the past month and none have showed (that I can see) on the list. Wade -- Registered Linux User: #480675 Linux since June 2005

Re: [css-d] CSS Image Rollover Problem

2009-04-02 Thread Wade Smart
Yazmin Media wrote: I'm working on a CSS rollover solution here: http://www.slrgear.com/articles/is_1iswp/test.htm My problem is that my hover image is not appearing when I hover over the rollover. The HTML file, the original image and the rollover image are all in the same directory. The

[css-d] Transparent Rows

2009-02-18 Thread Wade Smart
20090218 1829 GMT-5 Im editing a internal site for a client and they have this page where they pull inventory and its very difficult to read. In the background they have a faded company logo - it does not interfere with the viewing - its focusing on each line of inventory. I was just thinking

Re: [css-d] Transparent Rows

2009-02-18 Thread Wade Smart
Casey wrote: On Wed, Feb 18, 2009 at 4:43 PM, Wade Smart wadesm...@gmail.com wrote: 20090218 1829 GMT-5 Im editing a internal site for a client and they have this page where they pull inventory and its very difficult to read. In the background they have a faded company logo - it does

Re: [css-d] Roll over highlight

2008-12-16 Thread Wade Smart
Tony Kay wrote: I am trying to set up a style that puts a 2 pixel border around a set of images. Then when the image is rolled over, I want the border to be 5 pixels. How is this done? Thanks for any help. Tony 20081216 1425 GMT-5 a:hover { border: 5px solid;} Wade -- Registered

Re: [css-d] [OT] Need Screenshot Please

2008-12-04 Thread Wade Smart
yahoo wrote: Sorry about posting this here but I'm in desperate need of a screenshot from someone using Konqueror on Linux. If you can help, please contact me off list. Thank you, Frank 20081204 1848 GMT-5 Frank check out: http://browsershots.org It will show you your site on

[css-d] on firefo, blue line around links

2008-11-13 Thread Wade Smart
20081113 1221 GMT-5 I didnt build this site but I have been asked to fix the problem (as they are friends) but I cant find anything wrong code wise. www.questrealtybartlesville.com If you are viewing from Firefox 3.0.3 (and possibly other versions as well) the header graphic had a blue line

Re: [css-d] on firefo, blue line around links

2008-11-13 Thread Wade Smart
Sandy wrote: Wade Smart wrote: 20081113 1221 GMT-5 I didnt build this site but I have been asked to fix the problem (as they are friends) but I cant find anything wrong code wise. www.questrealtybartlesville.com If you are viewing from Firefox 3.0.3 (and possibly other versions

Re: [css-d] Site Check

2008-10-13 Thread Wade Smart
[EMAIL PROTECTED] wrote: Here's a site I recently finished and it is up and running and I think it works pretty good but I just want other eyes to look at it and see if there's anything that needs fixing or could use enhancing: http://www.golfteesgalore.com/ Christian Ziebarth 20081013

Re: [css-d] CSS Coding Ideas?

2008-07-30 Thread Wade Smart
Matthew Stoneback wrote: Good afternoon - I hate to ask this but I have a dilemma I am hoping some more experienced CSS coders can help me with. I was asked to help a local church in coding their website. They have a designer who is producing all of the layout, unfortunately the designer

[css-d] Creating a family tree

2008-05-22 Thread Wade Smart
20080522 0844 GMT-6 Im working with a site developer locally with a large project. He has all these charts that will need to be put on an intranet site. They are kinda like a family tree chart, like this: |-- |-| |--

Re: [css-d] Gif and PNG with IE6

2008-05-06 Thread Wade Smart
David Hucklesby wrote: But if you use PNG-8 the transparency works fine. Semi-transparency displays as fully transparent in IE 5.x and 6 though. We can't solve your problem without seeing the page, though. But I'll remind you that the path to a background-image is the path from the style

[css-d] Gif and PNG with IE6

2008-05-05 Thread Wade Smart
20080505 19174 GMT-6 Did this list all of the sudden get very quiet? I havent received a message for many days now. Anyway, Im using a background image on a page. One is a gif and the other a png. Neither are showing in IE6. As I did not use IE Im not sure what would be the problem. Was it

[css-d] Horizontial Nav wrapping in IE

2008-04-16 Thread Wade Smart
04162008 1126 GMT-6 I have horizontal navigation that uses graphic button backgrounds in a li. In IE the buttons are in vertical rows. li { display: inline; } #nav a { margin: auto; background: url(graphics/ButtonBackground.png} no-repeat top left; text-align: center; } #nav a:hover {

[css-d] Text in a div is pushed to the Right and will not realign to the Left

2008-01-26 Thread Wade Smart
01252008 1723 GMT-6 Hello. My name is Wade and Im needing some help. Im helping out to maintain a weather site located at : http://74.135.47.164:8080/wx7.php The css for this site is at : http://74.135.47.164:8080/weather-screen.css On this page to the right at the top you will see the