• Implementing Readmore and Readless using JQuery

    Implementing Readmore and Readless using JQuery

    Implementing Readmore and Readless using JQuery We all want our website to be dynamic and for that we use javascript. Jquery is a best way of implementing js and dynamic websites. Without wasting time lets proceed-: Read more

  • Combine two wifi connections for faster internet access

    Combine two wifi connections for faster internet access

    Combine two wifi connections for faster internet access If  you have more than one active internet connections and you are using only one at a time, while the other is resting? Don’t let it be lazy. Combine them all to get combined internet speed. Say you have two connections of 1 Mbps each, you just Read more

  • Resolving MediaKit reports not enough space on device for requested operation. Operation failed… (External HD problem)

    Resolving MediaKit reports not enough space on device for requested operation. Operation failed… (External HD problem)

    Resolving MediaKit reports not enough space on device for requested operation. Operation failed… (External HD problem) When formatting an external drive from macOS 10.11.x (El Capitan) and macOS 10.12.x (Sierra), and 10.13 (High Sierra) Disk Utility the follow error may occur, moving on to a quick solution for this problem: Read more

  • Meta tag @media in css for responsive websites

    Meta tag @media in css for responsive websites

    Meta tag @media in css for responsive websites To make the websites responsive, we use the meta tags which makes our website look more responsive when used in smart phones or ipads. Using meta tag and @media in css for making website more responsive when used in small screen devices. Link to JS FIDDLE: //jsfiddle.net/djmayank/a2tn43yw/26/embedded/html,css,result/dark/ Read more

  • Chaging background color using @media in css

    Chaging background color using @media in css

    Chaging background color using @media in css LINK TO JS FIDDLE //jsfiddle.net/djmayank/yprt6r9m/5/embedded/html,css,result/dark/ The @media rule is used in media queries to apply different styles for different media types/devices. Media queries can be used to check many things, such as: width and height of the viewport width and height of the device orientation (is the tablet/phone in landscape Read more

  • Flex changing positions on resizing window

    Flex changing positions on resizing window

    Flex changing positions on resizing window The main css code for the position changing is : @media all and (min-width: 750px) { .nav {text-align:left;flex: 1 auto;order:1;} .article {flex:5 0px;order:2;} footer {order:3;} } Read more

Advertisements