-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathFooter que aparece
72 lines (55 loc) · 1.17 KB
/
Footer que aparece
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*Footeer que aparece en Divi en vez de estar fijo */
#main-content {
margin-bottom: 350px; /*Esto puede que tengas que ajustarlo al contenido de tu footer*/
}
#main-footer {
position: fixed;
z-index: -1;
height: 350px; /*Esto puede que tengas que ajustarlo al contenido de tu footer*/
width: 100%;
bottom: 0;
}
#footer-bottom {
position: fixed;
width: 100%;
bottom: 0;
padding: 10px 0;
}
#footer-info, #footer-info a {
padding: 0;
}
#main-footer .container {
height: 100%;
}
#footer-widgets {
position: absolute;
bottom: 51px; /*Esto puede que tengas que ajustarlo al contenido de tu footer*/
}
/*Edita esta sección para pantallas de tablet*/
@media only screen and ( max-width: 980px ) {
#main-content {
margin-bottom: 450px;
}
#main-footer {
height: 450px;
}
#footer-widgets {
bottom: 83px;
}
}
/*Edita esta seccion para pantallas de moviles*/
@media only screen and ( max-width: 767px ) {
#main-content {
margin-bottom: 650px;
}
#main-footer {
height: 650px;
}
#footer-widgets {
bottom: 83px;
padding: 5% 0;
}
#footer-widgets .footer-widget:nth-child(n), #footer-widgets .footer-widget .fwidget {
margin-bottom: 4.5% !important;
}
}