nordstromdesign
-
What is JSON? And should I be using it?
JSON stands for JavaScript Object Notation and is one of the more efficient ways the information you are retrieving from a server can be sent to the local machine to be parsed and processed by JavaScript. It is usually used in cooperation with AJAX …
-
How to do responsive design?
What you are looking for is media queries. Use the links below to start your journey. http://css-tricks.com/css-media-queries/ http://css-tricks.com/snippets/css/media-queries-for-standard-devices/ http://css-tricks.com/snippets/css/retina-displa…
-
media queries and links of resonsive website
What you are looking for is media queries. Use the links below to start your journey. http://css-tricks.com/css-media-queries/ http://css-tricks.com/snippets/css/media-queries-for-standard-devices/ http://css-tricks.com/snippets/css/retina-displa…
-
CSS Responsive Circles
@CrocoDillion Yes, it does work without the height and position. I had those in the code so that when he added his icon to the circle he would be able to center it by absolutely positioning the icon. As for the idea; I cannot take credit for it. I …
-
CSS Responsive Circles
@HugoGiraudel that won't work. He wants the circle to grow and shrink with the window size and for the circle to remain a circle. I believe this is what he is looking for: http://codepen.io/nordstromdesign/pen/sJlth
-
CSS Responsive Circles
Use this code for the .circle class: .circle { position: relative; border-radius: 50%; width: 100%; height: auto; padding-top: 100%; background: white; } make sure your padding top is the same as your width and make your height auto.
-
Dreaded Image Border Radius in Safari
Do you have an image of what you would like it to look like?
-
Hide element again
This line $('.arter-all > div').hide(); is causing your div#xx- to hide before it is toggled; therefore, when it is toggled it is only toggled on. Remove that line so that toggle can work the way you want it to.
-
Contact Post not displaying information
Your initial check of seeing whether the $_POST['submit'] !empty will always be false with the way your form is setup. Instead of using "a" elements to submit the form use and then style to submit button to suite your design.
-
Contact Post not displaying information
Your $_POST names must match your input names. If the input name is "Name" then your POST name must be $_POST['Name'] and if your email input name is "E-mail" then your POST name needs to be $_POST['E-mail'] …
-
Making a Sub Menu for a nav not neccesarily a drop down menu
This stackoverflow topic may help. http://stackoverflow.com/questions/11541467/horizontal-menu-with-horizontal-submenu
-
Input Display Error
The value of your input:button is "010940250076997835162:WMX1781837400" Not sure where this is coming from but the first three characters are 010 and that is what you are seeing.
-
Inset border with box-shadow -- extra top space?
I made some adjustments: http://codepen.io/nordstromdesign/pen/awegv
-
Inset border with box-shadow -- extra top space?
If you use: box-sizing: border box; then your padding and borders will not exceed the limits of your overall dimensions. http://codepen.io/nordstromdesign/pen/awegv
-
can anybody at a good price upgrade my website
There are definitely steps you can take to increase your SEO which in turn will help your ranking on search engines, but if you are looking for more "leads and business" then you will need to look at adwords, facebook ads or something of t…
-
AnythingSlider problems with Firefox
Sorry, the stray slash is just inside the body tag. It appears on the page in the very top left corner.
-
AnythingSlider problems with Firefox
It appears as though you have a stray forward slash somewhere in the head section of your code. Maybe try removing that to see if it fixes the problem.
-
Problem with header design
I reworked it a little for you: http://codepen.io/nordstromdesign/pen/mpvKB Hopefully this will help get you moving on the right track.