badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Reply To: Center Logo / Center Text Widget / Code in TH-Widget

#39722

Hi Rudolf,

1. To center the company logo in the header/start-page Go to Appearance -> Customize -> Ambition Theme Options -> Custom CSS and paste the below CSS code then click on Save & Publish button.

@media only screen and (min-width: 767px) {
	.hgroup-wrap {
		text-align: center;
	}
	#site-logo,
	#site-title,
	#site-description {
		float: none;
	}
	#site-title a,
	#site-description {
		display: inline-block;
	}
}

2. To center the text in Text widget on the business page first add you content as below format in text area in text widget.

<div class="container">
Your text goes here 
</div>

then add below custom CSS code.

.business-layout .widget_text {
    margin-bottom: 0;
    padding: 40px 0;
    text-align: center;
}

3. We do not understand your last question could you please clarify it once again?

Thank you!