apostrophe
-
[Solved] Remove Border from an Image
It's not actually showing in firefox but I've had a look in ie7 with IENetrenderer and I reckon it's inheriting this rule: a { border-bottom:1px solid #508181; color:#000000; font-size:inherit; text-decoration:none; } So how about get…
-
[Solved] Problem with my Website, Appreciate Some Help
What's the problem? the boxes on the page I'm looking at are the same as the boxes in your picture. Also, this is a CSS forum, and I noticed you're using Tables for layout, what's the reason for this?
-
jquery issues with docMenu and startStop Slider
To begin with you should really be calling the javascript files in the document head or before the closing body tag. Doc is right why are you calling 2 jQuery files? Not that it matters as one of them can't be found. The one that is loading, jq…
-
[Solved] Hiding Text on Search Form
The thing about editing core files is that the next time you update wordpress the problem will return. Far better to create your own searchform http://quirm.net/2009/06/18/editing-the-wordpress-search-form/
-
Footer not sticking to bottom in Mozilla Firefox and IE
I suggest you have another look at the tutorial you linked to. The footer should be outside the container, the push div should be the last thing inside the container and not come after the footer.
-
cascade
what is the meaning of cascading From Merriam-Websters online dictionary: Main Entry: 1cas·cade Pronunciation: \(?)kas-?k?d\ Function: noun Etymology: French, from Italian cascata, from cascare to fall, from Vulgar Latin *casicare, from Latin casus …
-
[Solved] Problem with my Website, Appreciate Some Help
Link doesn't work.
-
[Solved] Remove Border from an Image
You're obviously overriding it somewhere else in the cascade. Can you post a link?
-
[Solved] CSS Background Image Trouble
All you need to do to put the arrow on the link is change: #topnav li#active { background:transparent url(../images/topnavactive.png) no-repeat scroll center bottom; } #topnav li { display:inline; float:left; margin:0 10px; padding-bottom:10px; } to…
-
[Solved] CSS Background Image Trouble
Gimme a break. You're looking at a different menu to me. :D The one I am seeing only has 5 items: * Home * Search * Calendar * Login * Register If you want to center the whole menu then you must specify its width. NB…
-
Video #24
If I had to bet I'd say that the problem is in the html.
-
[Solved] wp_cycle slideshow plugin
"barbcpeter" said: Also, btw, I did originally do the margin: 15px auto; That will only work if you specify a width for whatever it is you are trying to center.
-
[Solved] Remove Border from an Image
Here you go: a img, :link img, :visited img { border: 0; }
-
Store Locator
Google is always your friend http://www.google.nl/search?q=website+store+locator&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-GB:official&client=firefox-a
-
[Solved] CSS Background Image Trouble
How about this: #topnav { color:#FFFFFF; font-family:tahoma,sans-serif; font-size:95%; letter-spacing:2px; margin:32px 0 0 167px; text-transform:uppercase; } #topnav li { display:inline; float:left; margin:0 10px; padding-bottom:10px; } #topnav li a…
-
CSS Spry Navigation Help
There is no such thing as 0.5 px. Firefox is rounding up to 1px and Safari is rounding down to 0.
-
[Solved] wp_cycle slideshow plugin
The slides are only positioned absolutely relative to their containing div so it makes no difference to how you position the slideshow on the page. I suspect that the problem lies elsewhere, can you post a link? EDIT: You do realise that you have t…
-
Joomla inherited CSS attribute problem
It's set to white in the styles in the document head (the bit wrapped with stars): #section2 a, #section2 legend, form.form-login .inputbox, ********#section2 h3********, #main-body ul.menu li.active a, #main-body ul.menu li.active a:hover, #ma…
-
CSS Spry Navigation Help
Validator would have been a good place to start trouble shooting http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Foltmandesign.com%2Fweb%2Fmarinelli%2Fspry_test.html%23 350z 03-06 350…
-
[Solved] wp_cycle slideshow plugin
Never seen this plugin before so I checked out its homepage http://www.nathanrice.net/plugins/wp-cycle/ and the example he links to http://www.modthemes.com/. From what I can see you need to wrap #rotator inside another div and style that.
-
Navi is going behind flash
To begin with you should really be embedding flash with something like http://code.google.com/p/swfobject/ or http://flowplayer.org/tools/demos/flashembed/index.html You say that you have tried to change the z-index, but you give no indication how y…
-
Trying to learn Jquery but these tutorials don't help
Why reinvent the wheel? http://malsup.com/jquery/cycle/lite/
-
Huge space at bottom of page IE 7
55 errors http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.debhdebh.net%2F
-
So....can we truly use HTML5 yet?
"greg.mcausland" said:how does google feel about the new tags in terms of rankings Well to begin with google use html5 (badly) on their home page. From what I understand it's not going to make much difference at the moment, 's a…
-
[Solved] A Little Bit of Help with WordPress Page Please?
I suspect that the problem lies in comments.php. Looks like you have your closing div tags confused somewhere. Best thing to do is comment each closing div, then with firebug you will see which one needs moving.
-
Internet Explorer: body not stretching too 100% width
Like the sticky says: Validation: It's your cross browser compatability friend! Lo and behold, 4 errors http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwp.citroenboom.com%2F Close the opening body tag:
-
IE6 & CSS issues
I played around with this for ages in firebug and I think this should work (certainly won't make it any worse): #bodyPan { background-color:#FFFFFF; margin:0 auto; padding:0; position:relative; width:755px; } #leftPan { background-color:#FFFFFF…
-
[Solved] Cross Browser Positioning Problem
The extra divs are totally unnecessary and setting a fixed height for a text area is never a good idea. If it was my page I would give div.hr top and bottom margins, take the specific height away from the divs (which incidentally dont need to be se…
-
[Solved] Cross Browser Positioning Problem
You have not defined any margins in the css so each browser is just using its own default settings, specify the top (and bottom) margins for all 's in the stylesheet.
-
So....can we truly use HTML5 yet?
All your questions answered at http://html5doctor.com/ and a showcase of a couple of hundred sites that are already using html5 http://html5gallery.com/.