word-games-theme 1.0.8 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 53499f3e9def218a757cf03340035c4737d3417efe0f66c119691b4e08d49317
4
- data.tar.gz: 6980f30a3e60d54fbe1eca9d0246bdf8dae7e51df08e69c72e1626e50321dbb0
3
+ metadata.gz: 8b9f7f8f2001ad497331a46b4cdd012220890886f94346fb468b99c4ff0fe79e
4
+ data.tar.gz: 02aef104d5ccfa527fbb16fa85217a251befcfb888d985f87e5662bdb15c4e35
5
5
  SHA512:
6
- metadata.gz: 31b1f8dbc498634f5a4b30373445af0703ce8bf333625b092a3457234df12ce6f4916ccfa9c3cc3aba2fc3d02117895156358c83327985da0efdaefd5762390c
7
- data.tar.gz: 92d3c5266bfff4f577a57248393f6fcbc8734e9bbf1862b4962045092e83002748ebbe53fc8edcf637d204ccc37ec8ed1bd00f1e5026afd61d991653a5b921ed
6
+ metadata.gz: ed8c70fa2e14defcb4f9b5f8b7d67d0f9087919bf36e8ab5056e5eca2b26879c3ec4eeb63145653ce5a4bb92db2cb18db9bbeed81d3a250f2bb395ccd35ab27a
7
+ data.tar.gz: 1521f85c30aa87f9755f269e50239179516b83cffd5da1e4d2efe657103b7adfcefce064feefa340e0bec303033722c986ba291258791cfe417a44d3458f8f25
@@ -1,6 +1,24 @@
1
+ {% if site.MonumetricID %}
2
+ <div class="row">
3
+ <div class="col-md-8 mx-auto">
4
+ <div id="disqus_thread"></div>
5
+ <script>
6
+ (function () {
7
+ var d = document, s = d.createElement('script');
8
+ s.src = 'https://{{site.disqus.shortname}}.disqus.com/embed.js';
9
+ s.setAttribute('data-timestamp', +new Date());
10
+ (d.head || d.body).appendChild(s);
11
+ })();
12
+ </script>
13
+ <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by
14
+ Disqus.</a></noscript>
15
+
16
+ </div>
17
+ </div>
18
+ {%- else -%}
1
19
  <div id="disqus_thread"></div>
2
20
  <script>
3
- (function () {
21
+ (function () {
4
22
  var d = document, s = d.createElement('script');
5
23
  s.src = 'https://{{site.disqus.shortname}}.disqus.com/embed.js';
6
24
  s.setAttribute('data-timestamp', +new Date());
@@ -8,4 +26,5 @@
8
26
  })();
9
27
  </script>
10
28
  <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by
11
- Disqus.</a></noscript>
29
+ Disqus.</a></noscript>
30
+ {%- endif -%}
@@ -0,0 +1,84 @@
1
+ {% assign lang = page.lang %}
2
+ {% assign dataToShow = site.data.footer[lang].data %}
3
+ {%- assign networksitesData = site.data.footer.networksites -%}
4
+ {% assign dataFile= site.data[folder][lang][file] %}
5
+
6
+ <footer class="footer-section">
7
+ <div class="footer-wrap">
8
+ <div class="container">
9
+ <div class="footer-single-col">
10
+ <div class="row text-center">
11
+ <div class="col-lg-8 mx-auto">
12
+ <div class="row d-flex mt-5">
13
+ <div class="col-md-6 txt-secondary">
14
+ <p class=" font-weight-bold txt-primary footer_subheading">{{dataToShow.linksTitle |
15
+ default:
16
+ 'Links' }}</p>
17
+ {% for data in dataToShow.links %}
18
+ <p class="mb-4"><a class="footer-links txt-secondary"
19
+ href="{{data.url}}">{{data.name}}</a></p>
20
+ {% endfor %}
21
+ </div>
22
+ <div class="col-md-6 txt-secondary ">
23
+ <p class=" font-weight-bold txt-primary footer_subheading">{{dataToShow.producttitle |
24
+ default:
25
+ 'tools' }}</p>
26
+ {% for data in dataToShow.tools %}
27
+ <p class="mb-4"><a class="footer-links txt-secondary"
28
+ href="{{data.url}}">{{data.name}}</a></p>
29
+ {% endfor %}
30
+ </div>
31
+ <div class="col-md-6 txt-secondary ">
32
+ <p class="font-weight-bold txt-primary footer_subheading">{{dataToShow.networksitestitle
33
+ |
34
+ default: 'Network sites'}}</p>
35
+ {% for data in networksitesData.networkSites %}
36
+ <p class="mb-4"><a class="footer-links txt-secondary"
37
+ href="{{data.url}}">{{data.name}}</a></p>
38
+ {% endfor %}
39
+ </div>
40
+ <div class="col-md-6 txt-secondary">
41
+ <p class=" font-weight-bold txt-primary footer_subheading">{{dataToShow.companytitle |
42
+ default:
43
+ 'Company' }}</p>
44
+ {% for data in dataToShow.company %}
45
+ <p class="mb-4"><a class="footer-links txt-secondary"
46
+ href="{{data.url}}">{{data.name}}</a></p>
47
+ {% endfor %}
48
+ </div>
49
+ </div>
50
+ <div class="col-md-12 txt-secondary mb-5">
51
+ {%- if dataToShow.logo -%}
52
+ <div class="footer-logo-cont">
53
+ <img loading="lazy" src="{{dataToShow.logo}}" title="logo" class="footer-logo d-block"
54
+ alt="footer logo" width="30px">
55
+ <span class="email_heaidng">
56
+ {{dataToShow.heading}}
57
+ </span>
58
+ <!-- <div class="footer-title">{{dataToShow.heading}}</div> -->
59
+ </div>
60
+ {%- endif -%}
61
+ <hr class="footer_hr">
62
+ <div class="footer-social-list mt-4">
63
+ <ul class="list-inline">
64
+ {% for data in dataToShow.social %}
65
+ <li>
66
+ <a href="{{data.url}}" target="_blank">
67
+ <i class="{{data.icon}}"></i>
68
+ </a>
69
+ </li>
70
+ {% endfor %}
71
+ </ul>
72
+ </div>
73
+ </div>
74
+ <div class="copyright-text mt-5 txt-secondary text-center">
75
+ <p>
76
+ {{dataToShow.messege}}
77
+ </p>
78
+ </div>
79
+ </div>
80
+ </div>
81
+ </div>
82
+ </div>
83
+ </div>
84
+ </footer>
@@ -1,6 +1,37 @@
1
+ {% if site.MonumetricID %}
1
2
  <div class="explore">
2
- <h2>Explore <span class="d-none d-md-inline">→</span></h2>
3
+ <div class="row">
4
+ <div class="col-md-8 mx-auto">
5
+
6
+ <h2 class="text-center font-weight-bolder mb-5">Explore <span class="d-none d-md-inline">→</span></h2>
7
+ <ul>
8
+ {% assign categories_list = site.categories %}
9
+ {% if categories_list.first[0] == null %}
10
+ {% for category in categories_list %}
11
+ <a class="cat mt-1 mb-1"
12
+ href="/blog/categories#{{ category | url_escape | strip | replace: ' ', '-' }}">{{
13
+ category
14
+ |
15
+ camelcase }} ({{ site.tags[category].size }})</a>
16
+ {% endfor %}
17
+ {% else %}
18
+ {% for category in categories_list %}
19
+ <a class="cat mt-1 mb-1"
20
+ href="/blog/categories#{{ category[0] | url_escape | strip | replace: ' ', '-' }}">{{
21
+ category[0]
22
+ | camelcase }} ({{ category[1].size }})</a>
23
+ {% endfor %}
24
+ {% endif %}
25
+ {% assign categories_list = nil %}
26
+ </ul>
27
+
28
+ </div>
29
+ </div>
30
+ </div>
31
+ {%- else -%}
3
32
 
33
+ <div class="explore">
34
+ <h2>Explore <span class="d-none d-md-inline">→</span></h2>
4
35
  <ul>
5
36
  {% assign categories_list = site.categories %}
6
37
  {% if categories_list.first[0] == null %}
@@ -19,6 +50,5 @@
19
50
  {% endif %}
20
51
  {% assign categories_list = nil %}
21
52
  </ul>
22
-
23
53
  </div>
24
- </div>
54
+ {%- endif -%}
@@ -1,11 +1,12 @@
1
1
  <div class="container">
2
2
  <div class="relatedPosts">
3
- {%- if site.posts.size>0 -%}
4
- <h1 class="related_post_heading">Recent Posts</h1>
5
- {%- endif -%}
3
+
6
4
  {% if site.MonumetricID %}
7
5
  <div class="row">
8
6
  <div class="col-lg-8 mx-auto">
7
+ {%- if site.posts.size>0 -%}
8
+ <h1 class="related_post_heading text-center">Recent Posts</h1>
9
+ {%- endif -%}
9
10
  <div class="row">
10
11
  {% assign posts = site.posts | where_exp:"post","post.url != page.url" %}
11
12
  {% for post in posts limit: 6%}
@@ -45,6 +46,9 @@
45
46
  </div>
46
47
  </div>
47
48
  {%- else -%}
49
+ {%- if site.posts.size>0 -%}
50
+ <h1 class="related_post_heading">Recent Posts</h1>
51
+ {%- endif -%}
48
52
  <div class="row">
49
53
  {% assign posts = site.posts | where_exp:"post","post.url != page.url" %}
50
54
  {% for post in posts limit: 6%}
@@ -1,3 +1,184 @@
1
+ {%- if site.MonumetricID -%}
2
+ <section class="related-posts-section">
3
+ <div class="container">
4
+ <div class="relatedPosts">
5
+
6
+ {% assign maxRelated = 6 %}
7
+ {% assign minCommonTags = 1 %}
8
+ {% assign maxRelatedCounter = 0 %}
9
+ {% assign file = page.fileName %}
10
+ {% assign lang = "en" %}
11
+ {% assign folder = page.folderName %}
12
+ {%- if site.data[folder][lang][file].categories -%}
13
+ {% assign categories= site.data[folder][lang][file].categories %}
14
+ {%- else -%}
15
+ {% assign categories= page.categories %}
16
+ {%- endif -%}
17
+ {%- if site.data[folder][lang][file].tags -%}
18
+ {% assign tags= site.data[folder][lang][file].tags %}
19
+ {%- else -%}
20
+ {% assign tags= page.tags %}
21
+ {%- endif -%}
22
+
23
+ <div class="row">
24
+ <div class="col-lg-8 mx-auto">
25
+ <h2 class="pt-5 pb-0 related_post_heading text-center">You might also like</h2>
26
+ <div class="row">
27
+ {% for post in site.posts %}
28
+ {% assign sameTagCount = 0 %}
29
+ {% assign commonTags = '' %}
30
+
31
+ {%- if categories -%}
32
+ {% for category in post.categories %}
33
+ {% if post.url != page.url %}
34
+ {% if categories contains category %}
35
+ {% assign sameTagCount = sameTagCount | plus: 1 %}
36
+ {% endif %}
37
+ {% endif %}
38
+ {% endfor %}
39
+ {%- endif -%}
40
+
41
+ {%- if tags -%}
42
+ {% for tag in post.tags %}
43
+ {% if post.url != page.url %}
44
+ {% if tags contains tag %}
45
+ {% assign sameTagCount = sameTagCount | plus: 1 %}
46
+ {% endif %}
47
+ {%- endif -%}
48
+ {% endfor %}
49
+ {%- endif -%}
50
+
51
+
52
+ {% if sameTagCount >= minCommonTags %}
53
+ {%- include authors/authors.html-%}
54
+ <div class="col-md-6 mb-4 card-group">
55
+ <div class="card h-100">
56
+ <a href="{{ post.url }}">
57
+ <img src="{{ post.image }}" loading="lazy" class="card-img-top" height="auto"
58
+ width="100%" alt="{{post.title}}" {%- if site.crossorigin -%} crossorigin {%-
59
+ endif -%}>
60
+ </a>
61
+ <div class="card-body">
62
+ <a class="text-decoration-none text-dark" href="{{ post.url }}" class="anchor_link">
63
+ <h4 class="card-title mb-4 text-left">{{ post.title }}</h4>
64
+ </a>
65
+ </div>
66
+ <div class="card-footer bg-white">
67
+ <div class="wrapfooter">
68
+ {% if post.author %}
69
+ <span class="meta-footer-thumb">
70
+ <img class="author-thumb" loading="lazy" src="{{ image }}"
71
+ alt="{{ authorName }}" {%- if site.crossorigin -%} crossorigin {%- endif
72
+ -%}>
73
+ </span>
74
+ {% endif %}
75
+
76
+ <span class="author-meta">
77
+ <span class="post-name">
78
+ <a target="_blank" href="/blog">{{authorName}}</a>
79
+ </span><br>
80
+ <span class="post-date">{{post.date | date_to_string }}</span>
81
+ </span>
82
+ <span class="post-read-more"><a class="text-dark" href="{{ post.url }}"
83
+ title="Read Story">Read
84
+ More</a></span>
85
+ </div>
86
+ </div>
87
+ </div>
88
+ </div>
89
+ {% assign maxRelatedCounter = maxRelatedCounter | plus: 1 %}
90
+ {% if maxRelatedCounter >= maxRelated %}
91
+ {% break %}
92
+ {% endif %}
93
+ {%- else -%}
94
+ {%- endif -%}
95
+ {% endfor %}
96
+ {%- assign remamingPosts = maxRelated | minus: maxRelatedCounter -%}
97
+
98
+
99
+
100
+
101
+ {%- if remamingPosts > 0 -%}
102
+ {% assign posts = site.posts | where_exp:"post","post.url != page.url" %}
103
+ {% for post in posts %}
104
+ {%- if remamingPosts > 0 -%}
105
+ {%- assign tagData = true -%}
106
+ {%- assign catData = true -%}
107
+ {%- if tags -%}
108
+ {% for tag in post.tags %}
109
+ {% if post.url != page.url %}
110
+ {% if tags contains tag %}
111
+ {%- assign tagData = false -%}
112
+ {%- break -%}
113
+ {% endif %}
114
+ {%- endif -%}
115
+ {% endfor %}
116
+ {%- endif -%}
117
+ {%- if categories -%}
118
+ {%- if tagData == false -%}
119
+ {%- continue -%}
120
+ {%- else -%}
121
+ {% for category in post.categories %}
122
+ {% if post.url != page.url %}
123
+ {% if categories contains category %}
124
+ {%- assign catData = false -%}
125
+ {%- break -%}
126
+ {% endif %}
127
+ {% endif %}
128
+ {% endfor %}
129
+ {%- endif -%}
130
+ {%- if catData == false -%}
131
+ {%- continue -%}
132
+ {%- endif -%}
133
+ {%- assign remamingPosts = remamingPosts | minus: 1 -%}
134
+ {%- include authors/authors.html-%}
135
+ <div class="col-md-6 mb-4 card-group">
136
+ <div class="card h-100">
137
+ <a href="{{ post.url }}">
138
+ <img src="{{ post.image }}" class="card-img-top" height="215px" width="100%"
139
+ loading="lazy" alt="{{post.title}}" {%- if site.crossorigin -%} crossorigin {%-
140
+ endif -%}>
141
+ </a>
142
+ <div class="card-body">
143
+ <a class="text-decoration-none text-dark" href="{{ post.url }}" class="anchor_link">
144
+ <h4 class="card-title mb-4 text-left">{{ post.title }}</h4>
145
+ </a>
146
+ </div>
147
+ <div class="card-footer bg-white">
148
+ <div class="wrapfooter">
149
+ {% if post.author %}
150
+ <span class="meta-footer-thumb">
151
+ <img class="author-thumb" loading="lazy" src="{{image}}"
152
+ alt="{{ authorName }}" {%- if site.crossorigin -%} crossorigin {%- endif
153
+ -%}>
154
+ </span>
155
+ {% endif %}
156
+ <span class="author-meta">
157
+ <span class="post-name">
158
+ <a target="_blank" href="/blog">{{authorName}}</a>
159
+ </span><br>
160
+ <span class="post-date">{{post.date | date_to_string }}</span>
161
+ </span>
162
+ <span class="post-read-more"><a class="text-dark" href="{{ post.url }}"
163
+ title="Read Story">Read
164
+ More</a></span>
165
+ </div>
166
+ </div>
167
+ </div>
168
+ </div>
169
+ {%- endif -%}
170
+ {%- endif -%}
171
+
172
+ {% endfor %}
173
+ {%- endif -%}
174
+
175
+ </div>
176
+ </div>
177
+ </div>
178
+ </div>
179
+ </div>
180
+ </section>
181
+ {%- else -%}
1
182
  <section class="related-posts-section">
2
183
  <div class="container">
3
184
  <div class="relatedPosts">
@@ -167,4 +348,5 @@
167
348
  </div>
168
349
  </div>
169
350
  </div>
170
- </section>
351
+ </section>
352
+ {%- endif -%}
data/_layouts/blog.html CHANGED
@@ -9,8 +9,15 @@
9
9
  <div class="container">
10
10
  <div class="row justify-content-center section-title-wrap">
11
11
  <div class="col-lg-12">
12
- <h1 style="font-weight: 900;" class="display-4 m-0 small_description">{{ site.data.blog.blog.h1 }}
12
+ {%- if site.MonumetricID -%}
13
+ <h1 style="font-weight: 900;" class="display-4 text-center m-0 small_description">{{
14
+ site.data.blog.blog.h1 }}
13
15
  </h1>
16
+ {%- else -%}
17
+ <h1 style="font-weight: 900;" class="display-4 m-0 small_description">{{
18
+ site.data.blog.blog.h1 }}
19
+ </h1>
20
+ {%- endif -%}
14
21
  <p class="lead mb-5 mt-1" style="font-size: 18px;">
15
22
  {{ site.data.blog.blog.description }}
16
23
  </p>
@@ -19,6 +26,49 @@
19
26
  <div class="main-content">
20
27
  {{content}}
21
28
  </div>
29
+ {%- if site.MonumetricID -%}
30
+ <div class="row">
31
+ <div class="col-lg-8 col-md-12 mx-auto">
32
+ <div class="row">
33
+ {% for post in paginator.posts %}
34
+ <div class="col-lg-6 col-md-6 mb-4 card-group">
35
+ <div class="card h-100">
36
+ <a href="{{ post.url }}">
37
+ <img src="{{ post.image }}" loading="lazy" height="215px" width="100%"
38
+ class="card-img-top" alt="">
39
+ </a>
40
+ <div class="card-body">
41
+ <a href="{{ post.url }}" class="anchor_link">
42
+ <h4 class="card-title mb-4">{{ post.title }}</h4>
43
+ </a>
44
+ </div>
45
+ {%- include authors/authors.html -%}
46
+ <div class="card-footer bg-white">
47
+ <div class="wrapfooter">
48
+ {% if post.author %}
49
+ <span class="meta-footer-thumb">
50
+ <img class="author-thumb" loading="lazy" src="{{ image }}"
51
+ alt="{{ authorName }}">
52
+ </span>
53
+ {% endif %}
54
+
55
+ <span class="author-meta">
56
+ <span class="post-name">
57
+ <a target="_blank" href="/blog">{{authorName}}</a>
58
+ </span><br>
59
+ <span class="post-date">{{post.date | date_to_string }}</span>
60
+ </span>
61
+ <span class="post-read-more "><a class="text-dark" href="{{ post.url }}"
62
+ title="Read Story">Read More</a></span>
63
+ </div>
64
+ </div>
65
+ </div>
66
+ </div>
67
+ {% endfor %}
68
+ </div>
69
+ </div>
70
+ </div>
71
+ {%- else -%}
22
72
  <div class="row">
23
73
  {% for post in paginator.posts %}
24
74
  <div class="col-lg-4 col-md-6 mb-4 card-group">
@@ -54,10 +104,10 @@
54
104
  </div>
55
105
  </div>
56
106
  {% endfor %}
107
+ {%- endif -%}
57
108
  </div>
58
109
  {%- include paginationBlogPage.html -%}
59
110
  </div>
60
-
61
111
  {% include section/count.html %}
62
112
  </section>
63
113
  <!-- {%- include section/alertbar.html -%} -->
@@ -53,7 +53,12 @@
53
53
  {%- include section/recent_posts.html -%}
54
54
  {% endif %}
55
55
 
56
+ {%- if site.MonumetricID -%}
57
+ {%- include footer/unqFooter.html -%}
58
+ {%- else -%}
56
59
  {%- include footer/index.html -%}
60
+ {%- endif -%}
61
+
57
62
 
58
63
  {%- include script.html -%}
59
64
 
data/_layouts/page.html CHANGED
@@ -53,7 +53,11 @@
53
53
 
54
54
  {%- include share/socialshare.html -%}
55
55
 
56
+ {%- if site.MonumetricID -%}
57
+ {%- include footer/unqFooter.html -%}
58
+ {%- else -%}
56
59
  {%- include footer/index.html -%}
60
+ {%- endif -%}
57
61
 
58
62
  {%- include script.html -%}
59
63
 
data/_layouts/page2.html CHANGED
@@ -49,7 +49,11 @@
49
49
 
50
50
  {%- include share/socialshare.html -%}
51
51
 
52
+ {%- if site.MonumetricID -%}
53
+ {%- include footer/unqFooter.html -%}
54
+ {%- else -%}
52
55
  {%- include footer/index.html -%}
56
+ {%- endif -%}
53
57
 
54
58
  {%- include script.html -%}
55
59
  <script src="/assets/js/X-letter.js" data-url="{{site.url}}" data-range="{{page.blanktilerange}}"
@@ -414,7 +414,13 @@
414
414
  </section>
415
415
  <!-- End main body content -->
416
416
 
417
+ {%- if site.MonumetricID -%}
418
+ {%- include footer/unqFooter.html -%}
419
+ {%- else -%}
417
420
  {%- include footer/index.html -%}
421
+ {%- endif -%}
422
+
423
+
418
424
  {%- include script.html -%}
419
425
 
420
426
  </body>
@@ -414,7 +414,11 @@
414
414
  <!-- End main body content -->
415
415
 
416
416
 
417
+ {%- if site.MonumetricID -%}
418
+ {%- include footer/unqFooter.html -%}
419
+ {%- else -%}
417
420
  {%- include footer/index.html -%}
421
+ {%- endif -%}
418
422
  {%- include script.html -%}
419
423
 
420
424
  </body>
data/_layouts/tools.html CHANGED
@@ -58,8 +58,11 @@
58
58
  {% endif %}
59
59
 
60
60
 
61
+ {%- if site.MonumetricID -%}
62
+ {%- include footer/unqFooter.html -%}
63
+ {%- else -%}
61
64
  {%- include footer/index.html -%}
62
-
65
+ {%- endif -%}
63
66
  {%- include script.html -%}
64
67
  </body>
65
68
 
@@ -150,7 +150,11 @@
150
150
 
151
151
 
152
152
  {% include adBlocker/adBlocker.html %}
153
+ {%- if site.MonumetricID -%}
154
+ {%- include footer/unqFooter.html -%}
155
+ {%- else -%}
153
156
  {%- include footer/index.html -%}
157
+ {%- endif -%}
154
158
 
155
159
  {%- include script.html -%}
156
160
  <script src="/assets/js/scrabbleDictonary.js"></script>
@@ -162,8 +162,7 @@ a {
162
162
  right: auto;
163
163
  position: fixed;
164
164
  left: 0px;
165
- bottom: 0px;
166
- top: unset;
165
+ top: 135px;
167
166
  width: 100%;
168
167
  }
169
168
  .filter_count {
data/assets/css/blog.css CHANGED
@@ -128,6 +128,7 @@ header {
128
128
 
129
129
  /* BLOG-Categories stlying */
130
130
  .explore {
131
+ padding:25px;
131
132
  color: #fff;
132
133
  margin-bottom: 100px;
133
134
  margin-top: 60px;
@@ -1,6 +1,6 @@
1
1
 
2
2
  @media (max-width:768px) {
3
3
  .footer-section{
4
- padding:150px 0px;
4
+ padding:100px 0px;
5
5
  }
6
6
  }
data/assets/css/home.css CHANGED
@@ -4,11 +4,12 @@
4
4
  flex-direction: column;
5
5
  justify-content: center;
6
6
  align-items: center;
7
- height: 50vh;
7
+ height: auto;
8
8
  background: url(../images/bg_elements.png);
9
9
  background-position: center;
10
10
  background-size: cover;
11
11
  margin-bottom: 20vh;
12
+ padding:15px 0;
12
13
  }
13
14
  .result_navbar_section{
14
15
  width: 100%;
@@ -323,9 +324,6 @@ input:-webkit-autofill:active {
323
324
  .result_navbar_section{
324
325
  padding: 1.2rem 15px !important;
325
326
  }
326
- .pageHeaderBg{
327
- height: 300px;
328
- }
329
327
  .pageHeading{
330
328
  margin-bottom: 1rem;
331
329
  }
data/assets/css/style.css CHANGED
@@ -28,15 +28,18 @@ html {
28
28
  /* loader css close */
29
29
  header {
30
30
  width: 100%;
31
- position: relative;
31
+ position: sticky;
32
+ top: 0;
33
+ left: 0;
34
+ z-index: 999;
32
35
  }
33
36
  .navbar {
34
37
  width: 100%;
35
38
  padding: 1.2rem 9% !important;
36
- position: fixed;
39
+ /* position: fixed;
37
40
  top: 0;
38
41
  left: 0;
39
- z-index: 999;
42
+ z-index: 999; */
40
43
  display: flex;
41
44
  justify-content: space-between;
42
45
  flex-wrap: wrap;
@@ -244,8 +247,8 @@ header {
244
247
  }
245
248
 
246
249
  .tools_headings {
247
- margin-top: 110px;
248
- margin-bottom: 20px;
250
+ padding: 15px 0;
251
+
249
252
  }
250
253
  .how-to-section {
251
254
  padding: 90px 0;