cyneWATCH
-
CSS not displaying at all in Opera 12(.11)
Hmm, I must just be experiencing some weird bug then. Thanks for the feedback.
-
OOCSS - Spacing between items
As to getting them all to have padding except for the img, you can use the :not() selector: article > *:not(img) { padding: 0 1em; } Sadly though, this uses the * selector, although I don't think that the performance difference should …
-
OOCSS - Spacing between items
If you want to use the padding in another place but with different values, you'll need to separate the padding from the object. As to removing the date... do you want to remove it? If so, I would add a margin to the top paragraph, like so: p:…
-
A thought on design
Sorry, ignore this: I'd forgotten to put the Login form in, and now have a perfect place.
-
Menu's are ovelaping with logo in my site.
You need all the elements in the nav to be position: static, which is the default. Then though, they will push each-other down.
-
A thought on design
Yeah, that could work, although I don't know if WordPress can do that (this will become a WP theme).
-
Help with Re-sizing navigation
Then just shrink their margin or padding. But when using a website on a phone you need a lot of space between links, because your finger takes up a certain amount of space.
-
Help with Re-sizing navigation
You can keep vertical pixel distance; it's just the horizontal that needs percentages.
-
JM Badge Logo
Very nice Jan! I don't exactly understand the sunglasses at the top though.
-
Help with Re-sizing navigation
All of your navigation elements are positioned with pixels. Use % and it should work.
-
Any good Text editor? 4free
Well it depends, are you on mac or windows? On mac, TextMate 2 is open source and free, and I've had no bugs. I can send you a link to the newest compiled version. Then there's Tincta, Fraise, Komodo Edit (mac & windows) for mac. For w…
-
Comment.php Modified, Sidebar Disappeared
The links do not work. What I do is just go into 'functions.php', and search for 'comments'. You can then find the message that is shown when the comments are closed, and just change it to empty quotes.
-
vertical nav bar with images as a list item?
I would do this: Button Button Button Button Button Button Button CSS: .nested { display: none; } li:hover > .nested { display: block; } And just add extra styling.
-
How can you make a menu that when you hover over a ul or div that the content about it changes??
And when CSS4 comes out, you'll be able to do it in pure CSS, but for now is JavaScript.
-
Interactive Map
It's Google Maps. I don't know anything more. There's probably some way to edit a map you can embed, or maybe it actually has CSS in it or something.
-
100% height element problem
So what is the problem then, that you fixed with body { height: 100%; }? And what's the problem in FireFox?
-
Hover Effect 'Pushing' Text In Drop Down
It should work to just remove 3px from the padding when hovering. This works: .button { background: orange; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; padding: 10px; } .button:hover { border: 3px solid…
-
Sharepoint Quick Launch Collapsible Menu
You can use something called toggle(); like this: $('.someSelector').click(function () { $(this).toggle(); }); That bit of code basically means that whenever you click something with the class of 'someSelector', the one that is…
-
Problem with #wrap running behind my sticky footer in chrome!!
What's happened is that the footer was not cleared correctly, so the footer in Chrome doesn't know that there is content before it, whilst in Firefox it's low down enough to realise it (basically your ireFox window takes up more space…
-
add php shortcode in return function
OK. I'll have to pull out here; I'm not much of a PHP guy, and could not really see where the code came from. I can't answer your question I'm afraid.
-
Help with re-hiding the element after it has appeared
Just using toggle isn't enough: he wants all other elements to be hidden when you click that one as well, not just itself.
-
Strange behavior from an absolute positioned element
What the problem might be (not sure though) is that because the is display: inline-block;, then the inside it is acting weirdly; counting as the height of the inline part (where the drop-down arrow is), whilst the s are also being hovered over. It…
-
How to achieve this amazing effect ?
Nice! I've cleaned up your jQuery code BTW, just made it easier to maintain and shorter, more modularised. New fiddle: http://jsfiddle.net/8w8w9/
-
Simple CSS form not working
There are two things that could have happened: There is some PHP code at the bottom of the form that shouldn't be visible, that would mean that some tag or something is missing.There might not actually be any PHP on the server? I would simply r…
-
Responsive Design Looks Fine in Browser - Breaks on iPhone
Might have something to do with retina?
-
Some quick fixes(hopefully)
I copy/pasted your code for both the HTML and the CSS, and it worked fine. As far as I can see the problem is this: that for some reason, because the is position: absolute; and it sticks out of the original , then it's not hovered over any mor…
-
Would love your critique on my new blog design.
Chris did a post on this and how to fix it as he had the same problem on codepen. It was only a month or two ago. If I remember rightly the problem is only really with Safari and Chrome, and Chrome is now the most used browser in the world...
-
Strange behavior from an absolute positioned element
So the div's cursor should not be pointer, but the elements underneath it's cursors are pointers, and when you hover over the div then the cursor changes? If that is the problem, then all I can think of is that you should just add cursor:…