תיקון גלריה להצגת תמונות לרוחב וגובה + כותרת בתבנית ויפי

  • Post Author:
  • Post Category:

/* Carousel */ .fl-clients-carousel .slick-list.draggable{ padding: 0px 50px 40px !important; } .fl-clients-carousel .image-title { position: absolute; bottom: -40px; text-align: center; width: 92%; z-index: 9; } //fix to image carousel get…

להמשך קריאה תיקון גלריה להצגת תמונות לרוחב וגובה + כותרת בתבנית ויפי

הוספת פונט ב CSS

  • Post Author:
  • Post Category:

@font-face { font-family: 'Gilroy'; src: url('fonts/Gilroy-Regular.eot'); src: local('fonts/Gilroy Regular'), local('Gilroy-Regular'), url('fonts/Gilroy-Regular.eot?#iefix') format('embedded-opentype'), url('fonts/Gilroy-Regular.woff') format('woff'), url('fonts/Gilroy-Regular.ttf') format('truetype'); font-weight: normal; font-style: normal; }  

להמשך קריאה הוספת פונט ב CSS

overlay Background CSS

  • Post Author:
  • Post Category:

.custom-header-media:before { background: -moz-linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 75%, rgba(0, 0, 0, 0.3) 100%); background: -webkit-linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0,…

להמשך קריאה overlay Background CSS

CSS RESET

  • Post Author:
  • Post Category:

html, body{ max-width: 100%; overflow-x: hidden; } } *:focus,*{ outline:none; }  

להמשך קריאה CSS RESET

WPCF7 קונטקט פורם 7 בשורה אחת

  • Post Author:
  • Post Category:

סטריפ קונטקט פורם 3 עמודות <div class="gs-contact-form"> [response] <div class="form-horizontal"> <div class="col-md-3 col-sm-12 form-col"> [text* your-name class:form-control class:form placeholder "שם"] </div> <div class="col-md-3 col-sm-12 form-col"> [tel tel-912 class:form-control class:form placeholder…

להמשך קריאה WPCF7 קונטקט פורם 7 בשורה אחת

מציאת קורדינטות לפי כתובת

  • Post Author:
  • Post Category:

function get_lat_long($address){ $address = str_replace(" ", "+", $address); $json = file_get_contents("http://maps.google.com/maps/api/geocode/json?address=$address&sensor=false&region=$region"); $json = json_decode($json); $lat = $json->{'results'}[0]->{'geometry'}->{'location'}->{'lat'}; $long = $json->{'results'}[0]->{'geometry'}->{'location'}->{'lng'}; return $lat.','.$long; } $address = "הרב קוק 3 אשדוד"; //put…

להמשך קריאה מציאת קורדינטות לפי כתובת

יוזר אגנטס סלקטור ב CSS

  • Post Author:
  • Post Category:

html[data-useragent*='Chrome/40.0'] body { background-color: tan; } html[data-useragent*='Firefox/35.0'] body { background-color: salmon; } html[data-useragent*='Safari/600.3'] body { background-color: deepskyblue; } html[data-useragent*='Android'] body { background-color: silver; } html[data-useragent*='Android/2.1'] body { background-color: peachpuff; }…

להמשך קריאה יוזר אגנטס סלקטור ב CSS