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
This reply was modified 3 years ago by Ali Ugurlu .
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%;
}
}
or
@media (min-width: 992px) {
.col-md-6 {
white-space: nowrap;
}
}
This reply was modified 3 years ago by Ali Ugurlu .
This reply was modified 3 years ago by Ali Ugurlu .