overzicht geboren nesten

Sample Drop Down Module

This is an example of a module published to the drop_down row. This row contains 6 modules. To enable the drop down simple publish any module to any of the drop_down_x positions.

Kampioenschappen

One of the biggest obstacles to overcome when designing a responsive layout site is that not all content, images and extensions were designed to work with responsive layouts. That means that sometimes you need the ability to hide a specific element on only certain sized screens, so that something doesn't break the site's layout and everything looks proportionate. We've made that all possible and very easy to do for you with hiding classes! There are three main ways to hide content on different size screens, and they are documented below. Please note that these classes are only enabled when the responsive layout is enabled.



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;
}
}


I like what I see! I want to JOIN TODAY.

Amulette's E-nest

NESTGEGEVENS kennelnr. 35714
geb.datum aantal nestnr.
28-02-2008 12 (7/5) 11263
stamboomnaam NHSB chipnummer/tatouage
M Amulette du Lion d'Orange 528140000
V Aron Anao Nacambel
1 Endy 2739651 362247
2 Elle-Jolie 2739652 360554
3 Etoile 2739653 361629
4 Engel 2739657 358281
5 Emmes 2739654 360507
6 Elf 2739658 341745
7 Elan 2739655 344869
8 Elsie 2739650 360931
9 L'Esprit (Flinn) 2739656 347187
10 Email 2739659 346880
11 Europa 2739649 359730

Amulette's K-nest

NESTGEGEVENS kennelnr. 35714
geb.datum aantal nestnr.
31-12-2011 10 (5/5)
stamboomnaam LOSH chipnummer/tatouage
M Amulette du Lion d'Orange 9811000
V Druwen de l'Avenue du Miel
oranje 1 Kanine Meysam 1109272 2769959
roze 2 Kenzo 1109273 2770845
blauw 3 Kazan 1109274 2765701
rood 4 Kuno 1109275 2768691
groen 5 KyanZidane 1109276 2768185
roze 6 Kazinka 1109277 2767873
blauw 7 Kalei 1109278 2768984
groen 8 Kartouche 1109279 2765779
grijs 9 Kayla (Babs) 1109280 2769279
rood 10 Kajsa 1109281 2771137

Amulette's M-nest

NESTGEGEVENS fokkernr. 459176
geb.datum aantal nestnr.
    23/06/2013 6 (3/3)  
stamboomnaam LOSH chipnummer/tatouage
M Amulette du Lion d’Orange NHSB 2572518 BE 9130859
V Heraut de la Maison Echaruq 103309
1 Milo
2 Makker
3 Milord Heraut
4 Malou
5 Maraschka
6 Maxima 1133481 981100004004553

RoyaleMascotte's U-nest

geb.datum aantal nestnr.
30-03-2003 12 (5/7) 2062
stamboomnaam NHSB chipnummer/tatouage
M Royale Mascotte du Lion d'Orange
V O'P'tit Loup Fauve de la Chaume du Bois Dieu LOF196746/11965
'52814000008
1 Uran Scot 2447364 7450
2 Uncas 2447365 9588
3 Udoesch 2447366 7783
4 Uomo 2447367 577
5 Umberto 2447368 6476
6 Utile Dulci 2447369 4756
7 Ursinia Jenta 2447370 7127
8 Unique Tara 2447371 5006
9 Usha 2447372 4251
10 Umbra Maxi 2447373 4350/4839
11 Ursine Kyra 2447374 5455
12 Ulani 2447375 5709

RoyaleMascotte's V-nest

NESTGEGEVENS kennelnr. 35714
geb.datum aantal nestnr.
25-10-2004 8 (4/4) 6334
stamboomnaam NHSB chipnummer/tatouage
M Royale Mascotte du Lion d'Orange 2295284
V Zidane du Noble Nid LOSH 878459
'528140001
1 Vigo Noël 2532191 52032
2 Vélu Rodin 2532192 54906
3 Vrijn 2532193 50715
4 Valiant Aramis 2532194 50726
5 Vogue 2532195 54167
6 Vaj 2532196 55926
7 Valeur 2532197 50616
8 Validé 2532198 51684

RoyaleMascotte's A-nest

NESTGEGEVENS kennelnr. 35714
geb.datum aantal nestnr.
18-08-2005 12 (7/5) 4297
stamboomnaam NHSB chipnummer/tatouage
M Royale Mascotte du Lion d'Orange
V Bourbon de la Maison Louis d'Or ZB VDH-CFH-BR.XXI/5260
52814001
1 Atos 2572511 ?
2 Angelo 2572512
3 Asterix 2572513
4 Ajax 2572514
5 Al Jones 2572515
6 Anubis 2572516
7 Alf 2572517
8 Amulette 2572518
9 Amélie 2572519
10 Adorika 2572520
11 Akyra Mascotte 2572521
12 Anaïs 2572522

Mioche's R-nest

geb.datum aantal nestnr.
15-02-2000 10 (4/6) 1170
stamboomnaam NHSB chipnummer/tatouage
M Mioche van de Ridderweide 2101677 e vs 3404
V Gillian des Plaines de Brotonne LOF 184209/10594
5281400010
1 Rocco 2295278 46779
2 Resplandor 2295279 92017
3 Ramses 2295280 67817
4 Rejoui Henry 2295281 84442
5 Ravel 2295282 52357
6 Remy-Martin 2295283 46033
7 Royale Mascotte 2295284 45986
8 Rabanne 2295285 49190
9 Rosanne 2295286 61242
10 Roxanne 2295287 64757

Mioche's T-nest

NESTGEGEVENS kennelnr. 35714
geb.datum aantal nestnr.
07-06-2002 8 (5/3) 4311
stamboomnaam NHSB chipnummer/tatouage
M Mioche van de Ridderweide 2101677 e vs 3404
V Picon Bière des Plaines de Brotonne LOF1 97789
'528140001
1 Tenace Léon 2411108 172437
2 Thierry 2411109 165782
3 Tio Van Dijk 2411110 179358
4 Titie Noa 2411111 178145
5 Tu es Ma Biche 2411112 167626
6 Tara 2411113 165348
7 Tsarine 2411114 165172
8 TinTin 2411115 178172

Mioche's A-nest

NESTGEGEVENS kennelnr. 35714
geb.datum aantal nestnr.
10-04-2005 1 (1/0) 1736
stamboomnaam NHSB chipnummer/tatouage
M Mioche van de Ridderweide 2101677
V Bourbon de la Maison Louis d'Or ZB VDH-CFH-BR.XXI/5260
52814000
1 Aycko 2557996 0187180