pmac627
-
jQuery toggleClass() & CSS3 Transition Issues
Just an update for anyone who might ever run into the same issue. Turns out, visibility is not an accepted property for transition on mobile devices to date. It works fine in desktop browsers, but not on mobile ones. My code above had nothing to do…
-
Opinion on site
It works on an iPad, though I agree the borders are a tad much. I can remember when I went gradient crazy with GIMP.
-
SEO factor affecting web visibility in search results ?
And if nothing else, frequently updated content gets googlebot to crawl more often, which as @Paulie_D so kindly pointed out, can help or hurt your rankings based on the relevancy of the content.
-
How many media queries is too many?
On a side note: Things like slideshows that consume a lot of JS and CSS but are generally only used on one page, I tend to give them their own stylesheet. I only include the stylesheet on the page that it is on via PHP. Thats the only time I have mo…
-
How many media queries is too many?
Actually it could be a maintainability nightmare either way. It depends on the structure of your site and what you are designing for. If your site consists of 500+ pages that is divided into 30 sections, all with different formatting, then extern…
-
How OCD Are You?
I always have the last semi-colon... but that's more a habit from C++ & PHP errors. I need the spaces in there, like margin: 0px;. Also, I cannot let 3-digit hex codes slide or lowercase hex codes. #fff and #34a3e6 drives me NUTS. I can…
-
How OCD Are You?
@JohnMotylJr - ill admit. I remember when i used like that. Ever look over code from even a year ago and go "WTF?!? What was I thinkin'?!?" Do you guys need to specify 0px rather than 0? Ex: margin: 0px auto;
-
What does this mean in CSS?
Thanks @HugoGiraudel! I figured as much but it cannot hurt to clarify.
-
What does this mean in CSS?
That's a great article. Does anyone know the hit the CSS processing takes with using attribute selectors? I would imagine it isn't ideal because the style sheet has to search the markup for a match each time you use it. I'm sure that&…
-
2 Repeating Backgrounds Starting at Different Points
Yeah, JS... I guess you need to apply the general background to the whole page like I did and then the sidebar background needs applied with JS to measure the distance between the sidebar and the left side to calculate % and adjust the css.
-
2 Repeating Backgrounds Starting at Different Points
We mean something like this: http://codepen.io/anon/pen/rlwsI I left the image at 100px height because your bigger square background has thicker lines every 100px; But if it was a simpler design, you could easily do a 1px height background image. T…
-
expand div's height to fit its container
@Schwarttzy - .container needs to be height: 400px; not min-height: 400px;. Do that, and it works.
-
Crazy Fluid 2 Column CSS Design
I'm going to have to disagree. I believe it looks glitched and unnatural and I really think that is an element of your theme that will get modified by a lot of the users that download it (and know how to fix it). If the centered articles would …
-
Crazy Fluid 2 Column CSS Design
I wish i could add a screenshot. It looks like there are a few problems on my razr maxx, both vert and landscape. The background follows you.. sometimes and usually lags. The nav sometimes follows, and is delayed. And the second article is center of…
-
2 Repeating Backgrounds Starting at Different Points
What background images do you want to use. You might have to use 1 that is centered and use repeat-y. Im on a phone, otherwise id play with this. Alternatively, you can put your elements inside two container divs (yes, divs purely for style. Its a …
-
List with background image for bullet and dotted border (only below text)
text-decoration: underline; Ditch the border-bottom. That will give you the underline, but not dotted. http://codepen.io/Pmac627/pen/btnLF
-
Nice Image Hover Effect
The text doesn't center on the hover. A possible fix is to apply padding-top. The way you applied the background image prevented changing the value of top to anything other than 0. EDIT: Reread your post above. I guess my Firefox doesn't …
-
CSS Table Rowspan question
On an iPad, the first listing has The spaces you listed, except the one above the season info is below it and between it and the buttons. Just FYI. The rest of the listings look fine.
-
Display only subdomain in URL (Help Please)
@NSR - I'm glad you are choosing to purchase the domains because hacky attempts at changing the URL are never a good idea as far as I'm concerned. To anyone who notices the hacky nature of the URL, its a red flag. I've seen hacky URL …
-
Website mockup critique?
John, I agree that he can use platform detection, but he should still list all three there. How many times have you gone to a site's "downloads" page and gotten every flavor listed? Since, technically, you could be browsing his site o…
-
Humans.txt - Do You Use It?
Do you use the syntax suggested by humanstxt.org or do you use your own when you do it? For example, while HTML5BoilerPlate offers and promotes humans.txt, they use a different syntax. /* humanstxt.org Syntax */ /* TEAM */ Your title: Your n…
-
Aligning Div
Its very possible. If you want faster replies, google the question. You can find dozens of possible solutions to the multiple questions you've asked on these forums over the last hour.
-
Aligning Div
There are a bunch of ways to do it. There are some better than this, but this works: http://codepen.io/Pmac627/pen/GshgA I have them not completely overlaying to show that there are two elements there. Just adjust the left and top values
-
Aligning Div
Like, overlaying (think two pieces of paper stacked on top of each other? Or two over each other like below? X X
-
What should I learn first?
I've gone into job interviews where knowing jQuery better than vanilla JS hurt your chances. The logic being that if you understand JavaScript, you will be able to truly understand jQuery and use it to its fullest.
-
My professor wants work samples... printed out?
I've had to do that once. I printed out the longest page I had and stuck it in there to get the point across. I wouldn't advise that approach unless you happen to have a professor that actually awarded stuff like that. TheDoc's idea …
-
New Site Feedback Please
Looks amazing, @andy_unleash. My screen tends to make colors look a tad lighter and that made the nav in the top right just a tiny bit hard to catch my eye at first. But the colors definitely match and it looks great. If you don't mind, what t…
-
Problems pointing to files on my server
Then I think that when you pull in the 1.html via jQuery, the browser is not then going out and searching for the scripts. That's the only guess I have. But again, I don't quite know how jQuery operates with .ajax(). For the sake of ruli…
-
Problems pointing to files on my server
Would pulling the files via jQuery trigger the browser to request the js files at all? I don't know enough about jQuery ajax calls to know. However, if it is requesting the js files when you use jQuery to request the 1.html, I would guess it is…