stevencrader
-
[Solved] Quirks when alternating between portrait & landscape
Do you have a link or example to show us?
-
slight problem with :after pseudo element
Try replacing #content .entry:after with .entry p:last-child:after. Here is the browser support for the :last-child selector http://caniuse.com/#feat=css-sel3
-
Tumblr Theme Edits?
Do you have a link to the Tumblr. That would help us a lot.
-
Logo Overlay - Z INDEX - Photography Page - SOLVED.
Use the opacity tag: opacity: .3; The number must be between 0 and 1. Word of warning: when using the opacity tag anything inside of the tag will receive the opacity. It isn't a big deal with the img tag but is if used on a div with elements i…
-
css snippet explanation
The > means the immediate children. This Codepen has an example.
-
I have a very stupid, easy question.
Are you wanting text to be double spaced or are you just looking to add extra space between paragraphs?
-
Logo Overlay - Z INDEX - Photography Page - SOLVED.
@hendrix940 The point David makes is a great one if you are going to have different sized images or make the site responsive. Opacity of which image? The logo or the gallery images?
-
CodePen Pro
@jurotek Log in to your codepen account, click settings, and then click pro account.
-
Logo Overlay - Z INDEX - Photography Page - SOLVED.
You could try this. Add the image right before the Nivo Slider div Give the image a class. I used image-overlay and apply the following style: .image-overlay{ position: absolute; z-index: 9999; top: 575px; right: 70px; }
-
Feedback on a design
@jurotek It isn't the closing that I was pointing out. It is the dash. There is no meta-charset tag. Guess I should have explained a bit more.
-
Feedback on a design
I know this isn't design related but your charset tag is incorrect. You have when it should be
-
How to achieve this in WordPress?
That image is from theverge.com where they use pull quotes all of the time. They don't use an jquery but code the part they want pulled. They use the quote tag (q) and apply the styles in CSS. I know they dont' use jquery because they show…
-
Cant find correct page id!
Since the front page is the only one with a different colored background. Specify the background color for the rest of your pages using the general body #contentWrapper and then specify the front page specifically #modulePage19098228 #contentWra…
-
STATUS on true live editing code
Code will auto-reload the page after updating the file (pressing save) http://incident57.com/codekit/ and handles preprocessors.
-
Tabbed CSS menu links not working
Please provide a link to the site or post a test case in http://codepen.io/pen/
-
check all checkboxes !!
Check out http://stackoverflow.com/questions/386281/how-to-implement-select-all-check-box-in-html
-
2 Repeating Backgrounds Starting at Different Points
Here is the page with two separate backgrounds but it has the same problem with the background moving as the browser is resized.
-
Client wants to add custom content to sidebar/other column
You could make it a widget area with a maximum of 1 widget that he could edit anyway he wants.
-
Thoughts on parallax scrolling websites
I sometime find them interesting to look at but overall find the user experience very poor. It bugs me when scroll does not behave as expected. I also find that it slows the scrolling or jumps around too much because it is resource intensive. I pref…
-
Invoicing Software
I have never used it but I here http://www.freshbooks.com/ is a good choice. If you have less than 3 customers the service is free.
-
Flexible triangles using borders?
It seems that Chrome (possibly webkit) doesn't support linear gradients specified with a "to bottom right" angle (even with the -webkit prefix).
-
Thoughts on Adjoining / Chaining Classes
Do you really care about IE6 support?
-
CSS Landscape mode
It is not just an iphone issue. Make your browser shorter and you have the same issue. Since the text and container are either position fixed or relative with top margin pushing it down out of view.
-
WHOIS Protection necessary?
I used to have GoDaddy and it irked me that they charged extra for WhoIs privacy so I switched to Hover where the domains are slightly more expensive and include free privacy while still being cheaper than the GoDaddy add-on + domain plan. I like t…
-
Display only subdomain in URL (Help Please)
Why would you want that anyway. "IF" it was possible, then there would be confusion because the user would think the site was subdomain.com but it is really subdomain.website.com. If someone owned subdomain.com, they would get that persons…
-
What are you listening to while you code?
I prefer listening to anything. Last year 90s pop hits really motivated me. I prefer to listen to something I can sing along to. There is also http://getworkdonemusic.com
-
CSS dropdown menu
This will make the menu show. There are probably some style changes to be made though. Remove overflow: hidden from #topNav Change #topNav ul { left: } from -999 to -9999px to move the sub menu all the way off the screen Firebug is in Firefox or …
-
Thoughts on a CSS Site
I would suggest trying to shrink the image file size. The PDF is quite large also at 13.5 MB reported by OS X.
-
WP Boilerplates
I usually prefer to code my own but look at these templates for ideas: HTML5 Reset WordPress template: http://html5reset.org/ Underscores: http://underscores.me/ Underscores (_s) is probably the best choice. It is a github project by a bunch of …
-
dl dt dd instead of tables
Use a table for tabular data. Nothing wrong with that. No need to reinvent the wheel table.