Archived topic
My new landing page
56 replies · Started by Chris on September 4, 2018
If its not that then disable each plugin to see which one is causing it.
David, the table removed. But no change. I now place the css.
Try debugging by disabling each plugin one at a time. Make sure autoptimize is off and clear browser caches.
Oke!
Very strange! It is only this page.
Try disabling the plugin you are using to add the pricing table :)
Oke,
The css was not working.
Yes! that is him. Glad I know now what the problem is 👍
Thanks David! 👍😁
You're welcome.
David, last question :-)
The color of the font, do I change that in Body of Content?
I do not understand the difference between the two.
Body or Content
Hi there,
body applies to the entire page :) So this one.
Content just effects the elements within the content container.
Okay, I have to think about that :-)
Thank you David 👍
Glad to be of help. Generally i set the body and content the same
Hello David,
The NinjaTables plugin gave too many errors in w3c.
So I removed it, and created the table in html.
In the css you can make that some columns are hidden on mobile. Awesome!
See: https://www.beurstrading.nl/test1/
It works and no w3c errors 😁
But I'm not a programmer, and I do not know if I've done the table and css well.
Can you check this for me?
CSS
@media only screen and (max-width: 760px), only screen and (max-device-width: 680px) {
.verberg1 {
width: 0 !important;
display: none !important;
}
}
.chris1 tbody tr:nth-child(even){background-color:#fcfcfc}
.chris1 thead {
background-color: #bfdafc;
color: #444444;}
HTML
<table class="chris1">
<thead>
<tr>
<th>Jaar</th>
<th class="verberg1">Start Portefeuille</th>
<th class="verberg1">Portefeuille Nu</th>
<th>Winst €</th>
<th class="verberg1">Winst %</th>
</tr>
</thead>
<tbody>
<tr>
<td>2018</td>
<td class="verberg1">15.000,00</td>
<td class="verberg1">26.002,00</td>
<td>11.002,00</td>
<td class="verberg1"> 73,35%</td>
</tr>
<tr>
<td>2017</td>
<td class="verberg1">15.000,00</td>
<td class="verberg1">23.922,00</td>
<td> 8.922,00</td>
<td class="verberg1"> 59,48%</td>
</tr>
<tr>
<td> </td>
<td class="verberg1"> </td>
<td class="verberg1">Totale Winst:</td>
<td>19.924,00</td>
<td class="verberg1">132,83%</td>
</tr>
</tbody>
</table>