— WHAT IS A COMMUNITY MANAGER? A Community Manager is the face of a company, managing communications in both directions. This digital-savvy employee is responsible for all communications, public relations, social media, events, and content creation, among other things. It’s a Web 2.0 communications role, incorporating online tools and in-person networking to create relationships and ultimately build the company’s brand, both online and off. — COMMUNITY MANAGER FUNCTIONS. Working alongside the social media manager to generate new ideas for social content to drive communications. Planning social content and maintaining the content calendar ensuring social media content is regular, relevant and engaging. Writing engaging copy forRead More →

Hello! In this tutorial we are going to learn how to create a dropdown menu using HTML/and CSS only. STEP 1 First of all we have to open the program and create the folder with HTML and CSS files. STEP 2 We can continue creating the HTML basic structure.   STEP 3 First of all we should create a div <header> inside this div we are going to put all out content. The content of our div will be a list <ul> and this list we will use sublist <li>. We can use as many labels as we want.   STEP 4 When we haveRead More →

Hello! In this entry you will discover about CodePen.io, a handy tool for any kind of web designer, including ourselves. The use of this webpage is completely free, and you can create as many pens (which will be explained later) as you wish. It does have a Premium feature that adds more functionalities, but for most of the users needs, it isn’t necessary at all. This webpage is made specifically for the use, practice and learning of the three main languages for web: HTML, CSS and JS. It lets you work on it online, getting updated results as you work on it, which removes theRead More →

There are many types of dropdown menus, but in this post we will explain how to create the most basic. 1. HTML Use any element to open the dropdown menu, <button>, <a> or <p> element. Use a container element (like <div>) to create the dropdown menu and add the dropdown links inside it. Wrap a <div> element around the button and the <div> to position the dropdown menu correctly with CSS. 2. CSS The following structure is one of the main possibilities that is related to the previous HTML.  Basic Dropdown:  Create a dropdown box that appears when the user moves the mouse over anRead More →

Hello! Have you ever found programming. And do you want the image to enter or hidden when you press a button? But you do not? If you want to know how to do it, this is your post! First of all you have to make a button with the class .button in html. With CSS you can change the color of the button the with the hight… <button class=“button”> </button> Second you have to make a div  with a bakground image in html or css you can chose what you prefere. And alsow whit a class for example .image HTML <button class=“button”> </button> <div class=“image”>Read More →

Cordova és un motor que fa servir phonegap per empaquetar l’html. Es pot dir que és un cojunt d’API’s de dispositius que permeten a un desenvolupador d’aplicacions mòbil accedir a funcions del mòbil com la càmera, l’acceleròmetre, etc. utilitzant javascript. Per a poder utilitzar aquest motor, primer de tot s’ha d’instal·lar des de la terminal de la manera següent:   $ sudo npm install -g cordova        Read More →

PhoneGap és un framework gratuït i open source que permet crear aplicacions mòbils multiplataforma a partir de tecnologies web com ara HTML5, CSS3 i Javascript. PhoneGap s’ha realitzat a partir de Apache Cordova i va ser crear per Nitobi, actualment està en mans d’Adobe i crea les anomenades “aplicacions híbrides”, a mig camí entre natives i les purament web, això ho aconsegueix a partir d’una sèrie de APIs que permetes controlar certes característiques dels dispositius com l’acceleròmetre, la càmera, les notificacions o la geolocalització.Read More →

Si en el nostre portafoli utilitzem l’isotope per a mostrar les fotografies i els diferents continguts, s’ha d’utilitzar un tall de codi javascript en la pàgina anomenada “functions.php”, per a tal que la llibreria es carregui i aquest funcioni correctament. Primer carreguem la llibreria a dalt de tot: wp_enqueue_script( ‘custom-script1’, get_template_directory_uri() . ‘/lib/js/isotope.pkgd.min.js’, array(‘jquery’)); Seguidament escrivim aquest tall de codi al final de tot del document (abans de tancar el php): <script type=”text/javascript”> jQuery(document).ready(function() { jQuery(‘#example_showhidden’).click(function() { jQuery(‘#section-example_text_hidden’).fadeToggle(400); }); if (jQuery(‘#example_showhidden:checked’).val() !== undefined) { jQuery(‘#section-example_text_hidden’).show(); } }); </script>  Read More →

Si volem que el menú de la nostra pàgina web remarqui la secció en la qual ens trobem, només necessitem una mica de codi en Javascript i CSS. D’entrada, a la fulla d’estils CSS determinarem una classe concreta per quan una secció estigui activa: .selected { color:#ff0000!important; } Finalment, en Javascript, li donarem la següent acció: $(‘.menu a’).each(function(index) { if(this.href.trim() == window.location) $(this).addClass(“selected”); }); El que fa aquesta acció és buscar quina és la pàgina en la qual ens trobem (window.location) i aplicar la classe “selected” a l’element del menú que contingui un vincle cap a aquesta pàgina. Òbviament, “menu a” dependrà de la classeRead More →

Fer responsive una pàgina web, vol dir que quan aquesta augmenta o disminueix de mida, ja sigui perquè es visualitza amb diversos tipus de pantalles o dispositius (ordinador, tablet, mòvil, etc.) o perquè es redueixi la mida del navegador per a qualsevol altre funció, el seu contingut pugui ser visible d’una manera correcta. Per a realitzar responsive, es pot fer de diverses maneres i utilitzant moltes eines. Tot seguit mostrem dues possibles maneres de fer que el contingt del nostre portal web es mostri correctament es miri des del dispositiu que es miri: 1. foundation.css -> és un framework per a utilitzar a l’hora de ferRead More →