elneco
-
Very strange: Screen size CSS Problem
create a test case. I will need to look at the problem to see whats going on. The CSS above tells me nothing.
-
menu with different items color
i dont get it. please elaborate. What are the submenus supposed to do when hovered? or supposed to look like initially?
-
Best way to accomplish this?
Use a cms. Create Users, and post their updates on the desired page. ( I recommend wordpress. )
-
A couple issues with loading and positioning
you gotta set the body margin to 0. Always use a CSS reset for browser consistency. I dont see an flashing navigation, did you take it out?
-
Image hover issue
you can change the opacity of the image on hover and smooth it out witha transition: http://codepen.io/pen/170/2 *you wont get the nice transition in IE but it will still work
-
Floated H1 & H2 not lining up in responsive layout
you need to change text alignment. make title and subtitle text-align:center;
-
Hover effect using sibling sector needs to be smoother
Try this: http://dabblet.com/gist/2591782 basically, the highlight element itself was interfering with the box hover, to fix this, i moved the highlight behind the boz with z-index also the gap in between the box elements (as a result of margin.)…
-
Web Design / Mac or PC?
i've also used a PC when first learning we dev. but navigating on a mac is easier for me quicker workflow, faster development, nice OS shortcuts etc.
-
CSS Margins
you can try this on the wrap: #container, .wrap { margin-right: 20px; width: 70%; padding: 0 10px; float: right; } /*remove width from content*/ #content {width: auto;} also, remove
-
CSS Color Animation applied to background?
i dont see why you just cant position your main content over the background content: http://codepen.io/pen/147/1 your probably thinking about multiple bg images (gradients/png's)..seems a bit overkill and not sure how practical it would be to …
-
CSS Menu Hell
links are not jumping around for me. all i see is an alignment problem caused by margin in bootstrp.css on line 330
-
Hey Ya'll! Check out CodePen
Chris this is amazing, great work!! already started having fun with it. http://codepen.io/pen/142/1
-
Slide Out Video Player CSS
you can try jquery to slide out a video container: http://jsfiddle.net/elneco/6wuUc/1/
-
control height of dropdown list
seems like simple css: http://jsfiddle.net/elneco/6wuUc/
-
jQuery or Javascript Pulsate Effect
if your not crazy about IE, you can try CSS http://jsfiddle.net/elneco/7XyPx/ support: http://caniuse.com/#feat=css-animation
-
SASS overwrite
files w/ an underscore dont get compiled to css.. only when they are imported into your main sass/scss file
-
Jquery Selectors append() in Wordpress
Protip: never use '.' in an ID name. but anyway i think this is what your looking for: http://jsfiddle.net/5adjT/
-
How to achieve this look
Just code up your idea. Make a static html template and then divide into sections: header.php, footer.php, index.php, sidebar.php.....wordpress codex is your friend for the dynamic stuff. http://codex.wordpress.org/Theme_Development
-
multiple floating columns problem. see the website please.
your div #ctl00_mainContent_ctl04_pnlOuterWrap has a 'clear' on it. take it off.
-
draggalbe box with arrows keyboard button
For draggable items add jquery ui to your page: http://jqueryui.com/ and then: $('#element').draggable(); as for dragging with arrow keys....i dont get what your trying to do
-
jquery slider with forms
not sure thats how forms work. perhaps you can divide the form into form fields and have each set on its own slide. and then have a submit on the last slide. see this: http://24ways.org/2009/have-a-field-day-with-html5-forms also, jquery tools has…
-
Moving Divs with jQuery
very good Vermaas, thats almost what im looking for. Although what i had in mind was for the stacking order to keep bumping down instead of the top and target switching positions...but thank you for this head start!
-
Javascript - Drop Down for selecting results/pg
java and javascript are two completely different things. i strongly suggest php.
-
Where to start with a simple image gallery
shadowbox is a easy jquery plug in to mess with: http://www.shadowbox-js.com/
-
[solved] Chrome -webkit-transform:
http://jsfiddle.net/eLQTS/5/ used absolute position and defined transform-origin
-
z-index and/or js to display iframe
http://www.shadowbox-js.com/
-
force width of an element
yeah i dont understand your goal either. if you want the image to be that far down the content div you can use relative/static positioning with a top margin. but then you'd have to absolutely position any content above that....hard to say witho…