Forums
(@ugurlu)
1 year, 10 months ago
hello, here two option
@media (min-width: 992px) { .col-md-6 { width: 100%; text-align: center; } }
https://praxis-altinay.de/wp-content/uploads/2023/05/text-center.png
or
@media (min-width: 992px) { .col-md-6 { width: 100%; display: flex; justify-content: center; } }
https://praxis-altinay.de/wp-content/uploads/2023/05/flex-center.png
Hello, you have set the classes .site-info and .site-footer to display:none !Delete the two display properties or overwrite them with following CSS code.
.site-footer, .site-info { display: block; }
Hello you can try with this css code
@media (min-width: 992px) { .col-md-6 { width: 100%; } }
@media (min-width: 992px) { .col-md-6 { white-space: nowrap; } }