Hide Sections of the Template via the Template Configuration
This is the simplest way to hide an area of the template is to use the template interface to easily select areas of the template that you want to hide on tablet sized screens (970px and less) or mobile screens (580px or less). Simply select the area that you want to hide and the Vertex framework takes care of the rest! These fields do work independent of each other, so if you want to hide something on both tablet and mobile sized screens you must select the same area on both fields.
IMPORTANT - If you turn off a column position such as right or right_inset something else must be in the same column or the layout will not work. For example you can turn off right_inset and keep right, but you cannot turn off both unless something is publihsed to right_top or right_bottom as well.
Hide Specific Modules via the Hide Classes
If you have only a specific module that you would like to hide at certain screen sizes, and not an entire section of the template, this is the best approach. A hide class is a class that can be applied to any element on the page and hides that particular element at certain screen sizes. Classes range in 100px increments for large screens and 50px increments for small screens. Below are some examples, and at the very bottom of this page there is a list of all the available hide classes. Use these sparingly if you can. As a recommendation, the primary target of these classes should focus on tablet and mobile sized screens. Wide screen monitors vary in size so it's much harder to use these classes correctly for large monitors. Tablet and mobile devices are much more consistent in size so it is much easier to apply the smaller hide classes.For example, say you want to hide a specific module when the screen sizes reaches 900px wide, and remain hidden for any screen below 900px. Simply add class=hide_900 to the title of the module like this:
The class is simply put into the title of the module. There must be a space just before class= , and don't worry, the class area of the title won't actually show on the live site, it's only shown in the backend. It must be entered exactly as shown above. The title can be published or unpublished, it does not matter which. Simply adding the classes to the title will apply the classes to the entire module.
What if you want it to hide the module only for a certain range? That's easy just add _only to the end of the class name. hide_900_only will only hide that element from 900px to the next increment in the hide classes, which is 850px. So it will only be hidden from 850px to 900px. You can also add multiple classes to the title like this class=hide_900_only hide_850_only which will apply both classes to the module.
What if you want to hide the module and then show it again later? That's simple, use show_ in the class instead of hide_. This will make the module show for the specified size no matter what other settings are on the module. So if you want to hide the module from 1000px and below, but you want to show it again later then do something like the following class=hide_1000 show_600. This will hide the module from 600px to 1000px.
Is there a more simple way? Yes, of course, the above directions are for experienced users who want to tweak their content for every available screen size. If you don't want to mess around with specific window sizes simply use the following classes instead, which have preset screen sizes applied to them:
hide_wide_screen
hide_standard_screen
hide_large_tablet
hide_small_tablet
hide_mobile
show_wide_screen
show_standard_screen
show_large_tablet
show_small_tablet
show_mobile
Hide Specific Content via the Hide Classes
If you have only specific content or images within an article or module that you want to hide then use the same hide classes described above, but wrap that specific content inside of the class instead of applying it to the entire module. For example, in the image below, the third paragraph will hide at 900px and then show again at 700px.
Available Hide Classes
All the available hide classes are listed below. Note there is a break at 970px and 580px to accommodate tablet and mobile sized screens.@media screen and (max-width: 1600px){
.hide_1600 {
display:none;
}
}
@media screen and (min-width:1500px) and (max-width: 1600px){
.hide_1600_only {
display:none;
}
}
@media screen and (max-width: 1600px){
.show_1600 {
display:inline;
}
}
@media screen and (min-width:1500px) and (max-width: 1600px){
.show_1600_only {
display:inline;
}
}
@media screen and (max-width: 1500px){
.hide_1500 {
display:none;
}
}
@media screen and (min-width:1400px) and (max-width: 1500px){
.hide_1500_only {
display:none;
}
}
@media screen and (max-width: 1500px){
.show_1500 {
display:inline;
}
}
@media screen and (min-width:1400px) and (max-width: 1500px){
.show_1500_only {
display:inline;
}
}
@media screen and (max-width: 1400px){
.hide_1400 {
display:none;
}
}
@media screen and (min-width:1300px) and (max-width: 1400px){
.hide_1400_only {
display:none;
}
}
@media screen and (max-width: 1400px){
.show_1400 {
display:inline;
}
}
@media screen and (min-width:1300px) and (max-width: 1400px){
.show_1400_only {
display:inline;
}
}
@media screen and (max-width: 1300px){
.hide_1300 {
display:none;
}
}
@media screen and (min-width:1200px) and (max-width: 1300px){
.hide_1300_only {
display:none;
}
}
@media screen and (max-width: 1300px){
.show_1300 {
display:inline;
}
}
@media screen and (min-width:1200px) and (max-width: 1300px){
.show_1300_only {
display:inline;
}
}
@media screen and (max-width: 1200px){
.hide_1200 {
display:none;
}
}
@media screen and (min-width:1100px) and (max-width: 1200px){
.hide_1200_only {
display:none;
}
}
@media screen and (max-width: 1200px){
.show_1200 {
display:inline;
}
}
@media screen and (min-width:1100px) and (max-width: 1200px){
.show_1200_only {
display:inline;
}
}
@media screen and (max-width: 1100px){
.hide_1100 {
display:none;
}
}
@media screen and (min-width:1000px) and (max-width: 1100px){
.hide_1100_only {
display:none;
}
}
@media screen and (max-width: 1100px){
.show_1100 {
display:inline;
}
}
@media screen and (min-width:1000px) and (max-width: 1100px){
.show_1100_only {
display:inline;
}
}
@media screen and (max-width: 1000px){
.hide_1000 {
display:none;
}
}
@media screen and (min-width:900px) and (max-width: 1000px){
.hide_1000_only {
display:none;
}
}
@media screen and (max-width: 1000px){
.show_1000 {
display:inline;
}
}
@media screen and (min-width:900px) and (max-width: 1000px){
.show_1000_only {
display:inline;
}
}
@media screen and (max-width: 970px){
.hide_970 {
display:none;
}
}
@media screen and (min-width:900px) and (max-width: 970px){
.hide_970_only {
display:none;
}
}
@media screen and (max-width: 970px){
.show_970 {
display:inline;
}
}
@media screen and (min-width:900px) and (max-width: 970px){
.show_970_only {
display:inline;
}
}
@media screen and (max-width: 900px){
.hide_900 {
display:none;
}
}
@media screen and (min-width:850px) and (max-width: 900px){
.hide_900_only {
display:none;
}
}
@media screen and (max-width: 900px){
.show_900 {
display:inline;
}
}
@media screen and (min-width:850px) and (max-width: 900px){
.show_900_only {
display:inline;
}
}
@media screen and (max-width: 850px){
.hide_850 {
display:none;
}
}
@media screen and (min-width:800px) and (max-width: 850px){
.hide_850_only {
display:none;
}
}
@media screen and (max-width: 850px){
.show_850 {
display:inline;
}
}
@media screen and (min-width:800px) and (max-width: 850px){
.show_850_only {
display:inline;
}
}
@media screen and (max-width: 800px){
.hide_800 {
display:none;
}
}
@media screen and (min-width:750px) and (max-width: 800px){
.hide_800_only {
display:none;
}
}
@media screen and (max-width: 800px){
.show_800 {
display:inline;
}
}
@media screen and (min-width:750px) and (max-width: 800px){
.show_800_only {
display:inline;
}
}
@media screen and (max-width: 750px){
.hide_750 {
display:none;
}
}
@media screen and (min-width:700px) and (max-width: 750px){
.hide_750_only {
display:none;
}
}
@media screen and (max-width: 750px){
.show_750 {
display:inline;
}
}
@media screen and (min-width:700px) and (max-width: 750px){
.show_750_only {
display:inline;
}
}
@media screen and (max-width: 700px){
.hide_700 {
display:none;
}
}
@media screen and (min-width:650px) and (max-width: 700px){
.hide_700_only {
display:none;
}
}
@media screen and (max-width: 700px){
.show_700 {
display:inline;
}
}
@media screen and (min-width:650px) and (max-width: 700px){
.show_700_only {
display:inline;
}
}
@media screen and (max-width: 650px){
.hide_650 {
display:none;
}
}
@media screen and (min-width:600px) and (max-width: 650px){
.hide_650_only {
display:none;
}
}
@media screen and (max-width: 650px){
.show_650 {
display:inline;
}
}
@media screen and (min-width:600px) and (max-width: 650px){
.show_650_only {
display:inline;
}
}
@media screen and (max-width: 600px){
.hide_600 {
display:none;
}
}
@media screen and (min-width:580px) and (max-width: 600px){
.hide_600_only {
display:none;
}
}
@media screen and (max-width: 600px){
.show_600 {
display:inline;
}
}
@media screen and (min-width:580px) and (max-width: 600px){
.show_600_only {
display:inline;
}
}
@media screen and (max-width: 579px){
.hide_580 {
display:none;
}
}
@media screen and (min-width:550px) and (max-width: 579px){
.hide_580_only {
display:none;
}
}
@media screen and (max-width: 579px){
.show_580 {
display:inline;
}
}
@media screen and (min-width:550px) and (max-width: 579px){
.show_580_only {
display:inline;
}
}
@media screen and (min-width:1300px) and (max-width: 50000px){
.hide_wide_screen {
display:none;
}
}
@media screen and (min-width:971px) and (max-width: 1299px){
.hide_standard_screen {
display:none;
}
}
@media screen and (min-width:750px) and (max-width: 970px){
.hide_large_tablet {
display:none;
}
}
@media screen and (min-width:580px) and (max-width: 750px){
.hide_small_tablet {
display:none;
}
}
@media screen and (min-width:580px) and (max-width: 750px){
.hide_small_tablet {
display:none;
}
}
@media screen and (max-width: 579px){
.hide_mobile {
display:none;
}
}
@media screen and (min-width:1300px) and (max-width: 50000px){
.show_wide_screen {
display:inline;
}
}
@media screen and (min-width:971px) and (max-width: 1299px){
.show_standard_screen {
display:inline;
}
}
@media screen and (min-width:750px) and (max-width: 970px){
.show_large_tablet {
display:inline !important;
}
}
@media screen and (min-width:580px) and (max-width: 750px){
.show_small_tablet {
display:inline !important;
}
}
@media screen and (max-width: 579px){
.show_mobile {
display:inline !important;
}
}
Het is frappant om te zien hoe snel de vachtkleur en glans kunnen wegtrekken als de hond opeens in mindere conditie verkeert. Kijk bijvoorbeeld maar naar een teefje dat net een nest heeft gehad. Ook is dit weer een voorbeeld van een wisselende hormoonspiegel die zijn invloed heeft op de vacht. Na +/- twaalf weken zal het teefje haar vacht "eruit gooien". Ook kunnen stresshormonen overigens verantwoordelijk zijn voor een plotselinge schrikrui. Dit kan bijvoorbeeld handig zijn als de hond wordt vastgegrepen, z’n tegenstander heeft vervolgens niet meer dan een hap met haren in zijn bek! Maar weer even terug naar de voeding. Deze zal, vooral bij de lange vacht als van de briard, van voldoende kwaliteit moeten zijn. Eerst zullen de vitale organen gevoed worden, voordat de huid en daarna ook vacht aan bod komen. Voedingen van mindere kwaliteit hebben vaak een hoger eiwitgehalte, wat een goedkope energieleverancier is. Maar voor een gezonde vacht is een voeding met voldoende kwalitatief hoogwaardige vetten vereist (Hill's Science Plan).
Vanuit een gezonde huid kan er dan o.a. voldoende talg geleverd worden die die lange briardharen kan smeren. En die verdeling van dat talg vindt dan weer plaats o.a. door het borstelen. Dat borstelen, daar valt natuurlijk ook weer het een en ander over te zeggen. Eerst wil ik nog even kwijt dat een van binnenuit goed gevoede vacht veel minder intensief geborsteld hoeft te worden, buiten dat deze er veel beter uitziet. Je kunt de beste kamhulpen gebruiken die er te koop zijn, maar deze zullen het natuurlijke talg niet snel kunnen vervangen. Daarmee wil ik niet zeggen dat een goede borstelspray daarmee overbodig is. Het gebruik hiervan is goede manier om de haren extra glad te maken waardoor deze makkelijker uit elkaar glijden waardoor de vacht minder snel zal beschadigen tijdens het borstelen. Ook de kwaliteit van de gebruikte borstel en de kam zijn bepalend voor het al dan niet beschadigen van de vacht tijdens het borstelen.Een varkensharen borstel, waarbij stevige haarbosjes wijd uiteen zijn ingeplant is een goede keus. De Mason Pearson haarborstel van puur varkenshaar is zo ongeveer de Mercedes onder de borstels. Daarmee kun je goed mee dףףr de vacht komen, i.p.v. er overheen te borstelen. Het is juist de bedoeling om de vacht te borstelen tot op de huid, maar dan zonder iets te forceren. Om dit te bereiken spray je eerst de gehele vacht lichtjes in met de vacht- of borstelspray. Bijvoorbeeld de oliespray van het merk Jean Pierre Hיry is erg goed. De genoemde artikelen zijn verkrijgbaar op de verschillende hondententoonstellingen. Let wel op met de oliespray: vlak voor een show is het beter deze tijdelijk niet te gebruiken omdat deze de vacht te zacht en te vettig zal maken! Tijdens het dagelijks, ofwel wekelijks gebruik zal de vacht, die van nature vrij "droog"moet zijn, de vetten van de spray in enkele dagen opnemen. Na het sprayen, bostel je eerst heel lichtjes de hele vacht rondom door. De hond staat hierbij op een trimtafel met stroef oppervlak. Je begint bij de haarpunten en gaat zo, de borstel losjes vasthoudend, van onder naar boven waarbij de spray over de vacht verdeeld wordt. Daarna kun je de hond eventueel op zijn zij laten liggen en dan begint het intensivere borstelwerk, waarbij je steeds van onder naar boven werkend, ofwel met de haargroei mee, kleine laagjes van de haarpunt naar de huid toe, stevig doorborsteld. Met je ene hand hou je de haren en de huid tegen. Met je andere hand trek je met de borstel steeds scheidingen door kleine beetjes haar onder je andere hand vandaan te borstelen. Pas waneer je de nieuwe pluk helemaal hebt uitgeborsteld begin je aan het volgende laagje. En hoe kleiner de plukjes zijn en hoe steviger je de huid tegenhoud, hoe makkelijker het zal gaan. En hoe minder erg de hond het zal vinden. Als je op deze manier de hele vacht doorgewerkt hebt, neem je een hele grove kam (zo ייn met een plat, houten handvat) en kam je je hele hond nog eens op dezelfde wijze door. Kom je toch nog een klit tegen, dan ga je een klein stukje terug naar waar je gebleven was totdat je de klit tegenkwam. Je kunt de klit nog eens afzonderlijk insprayen en eventueel kun je deze met je vingers openscheuren of uitpluizen. Daarna met de punt van je kam beginnen net zolang totdat je met de kam helemaal door de vacht heen kunt glijden, daarbij voorzichtig de vormen van het lichaam volgend.
