srig99
-
how to do it?
If you want to go on @AndrewPham's path, then use jQuery to perform an AJAX call on a click event. You will have to use jQuery.ajax(), jQuery.post(), or jQuery.get() to achieve this. Basically, you'll have to do something like this: $(…
-
EMs for media queries and layout
@Gareth I think this might be a good read for you: http://webdesign.tutsplus.com/articles/typography-articles/taking-the-erm-out-of-ems/.
-
Best way to add a blog to your site?
You could try using a Tumblr blog and then embed it on the website. This might help: http://adrifolio.tumblr.com/post/487702548/how-to-embed-tumblr-on-your-website-and-customize-it.
-
How do i stop Jquery animation "+=" when this is limited
@Jarolin I gave you some recommendations for sliders in the previous discussion that you posted here: http://css-tricks.com/forums/discussion/24608/jquery-slideshow-plug-ins-that-slide-div#Item_2.
-
How do you learn JavaScript?
@LimbachDesign I would like to reiterate what @Merri said: Don't use W3Schools. Check out this site if you want to learn the disadvantages: http://w3fools.com/. To learn JavaScript, just use this resource: http://net.tutsplus.com/tutorials/java…
-
Jquery Slideshow plug-ins that slide div
I would recommend using Nivo Slider or AnythingSlider. Just search Google for jQuery slideshows for more. There are literally thousands of them.
-
Cleaner way of writing this code?
@Rugg It's SCSS, a CSS preprocessor.
-
Hover div to trigger hover on img.class?
@DoPeT Yeah, just as @JoshBlackwood stated, you can't add pseudoclasses using jQuery. You'll have to create a separate class with the styles you have inside the :hover pseudoclass. Then, use this new class in your jQuery selector.
-
Hover div to trigger hover on img.class?
@DoPeT Did you import jQuery on your website already? If not, you'll have to do that first using the following script tag: . Then you'll have to do the following: $(function() { var box = $('img.earth'); var button = $(…
-
Hover div to trigger hover on img.class?
@DoPeT I edited my reply...See if that pen helps you...If not, just let me know and I'll make another demo for you or help you more!
-
Hover div to trigger hover on img.class?
@DoPeT Personally, I would animate the icon when the user hovers over the button, but that's up to you. Anyways, to achieve this functionality, you would make a CSS class with all the scaling and what not (to handle the transforms/animations th…
-
How was this made?
Just like @CrocoDillon stated, it uses JavaScript (jQuery) to add a custom class to the menu links on hover: $main_menu.find('>li').hover(function() { $(this).addClass('et_hover'); }, function() { $(this).removeClass(…
-
how can i add snippets to Zen coding ... ?
@dagash Why don't you just upgrade to Emmet?
-
how to redirect if one is logged in or not
@coolinfoforme Also, how does this pertain to CSS?
-
how to redirect if one is logged in or not
@coolinfoforme If you're using PHP, then use the following function: http://php.net/manual/en/function.header.php. It will allow you to redirect the browser to a different site. For example, header('Location: http://yoursite.com/dashboard/…
-
JavaScript - click but no reaction :(
@whodunit Yeah, just make sure you include all of the prefixes (like @wolfcry911 said) or toggle "Prefix free" from the settings menu in the CSS settings section...
-
Troubleshooting for a warning:[Web App from scratch series]
@Nick01 I think you might have put the file in the wrong directory...Could you please check and tell us if you did?
-
Best tool to resize images on a mac for web designer/developer
You can use Automator: http://osxdaily.com/2011/12/20/batch-resize-pictures-in-mac-os-x-using-automator/.
-
Css Issue on Mobile
@jay0316 Well, what's happening to the logo? Can you elaborate and possibly provide a screenshot of the iPhone's view of the website?
-
Disable second button onclick event, if first button is clicked.
@Jarolin Yeah, @CrocoDillon and my solution should work for you...I don't understand how it shouldn't...Can you please make a pen to demonstrate so we can help more?
-
Disable second button onclick event, if first button is clicked.
Try this: http://codepen.io/srig99/pen/xEmec.
-
How Can i Trigger a CSS Animation With onclick?
Basically, you would set up two classes for the element. One initial and one active class. When you click the button, you would trigger the active class (with an addition of the active class to the element) which changes the attributes of the elemen…
-
Thoughts on design and copy
Minor issue, but I think the elements in the header should be centered when the browser resizes to 30em to match this media query: @media screen and (min-width: 30em) {}.
-
Css image hover
@yoopek If you want an image to enlarge itself on hover, use this: http://codepen.io/anon/pen/FjqtK. It uses transform: scale(1.3, 1.3); to enlarge the image.
-
Arranging content, asides and navbar items seems to be problamatic
For your second question, I have a pen on CodePen that I made a while back. Here's the link: http://codepen.io/srig99/pen/vCBkl.
-
Macgasm bundle question
I second the suggestion of @benw36 for the Envato courses. Just use https://tutsplus.com/. It covers a lot more topics than the one you mentioned.
-
How to open a link in new window with a header?
@AlirezaM From what I understood, you want a header template to appear in a certain set of webpages. Just like @Senff stated, you cannot do this with HTML alone. You will have to use PHP or another language with this sort of template functionality. …
-
how to have a button over an image which when click expands to the left to show more info.
@locka I know that you said it would be difficult to show the massive amount of code, but can you make a simple example to show us instead of showing us the actual problem? It doesn't have to be complex, just make it show us the problem so we c…