Home Forums WoodMart support forum CSS HELP Reply To: CSS HELP

#27840

Bogdan Donovan
Keymaster

Try to add the following code snippet to the Custom CSS area in Theme Settings to fix this issue.

@media (max-width: 1024px) {
	
	body .container {
		 width: calc(100% - 80px);
	}
	
	body .container .right-column {
		margin-right: -55px;
	}
	
	body .container .panel-toggle {
		width: 55px;
		text-align: center !important;
	}
}

@media (max-width: 991px) {
	body .container {
		 width: calc(100% - 40px);
	}
	
	body .container .right-column {
		margin-right: -35px;
	}
}

@media (max-width: 767px) {
	body .container {
		width: 100%;
	}
	
	body .container .right-column {
		margin-right: -15px;
	}
}

@media (max-width: 480px) {

	body .container .right-column {
		margin-right: -5px;
	}
}

Regards