How to show address in one row?

It has to do with your <br> between each label field. Its not a PHP problem its a CSS. Try to add .wpcf7cf_group br { display: none; } to your css file or use a wordpress plugin like Simple Custom CSS.

TinyMCE on frontend style not working

The answer is simple: Styles from your theme are also applied to the TinyMCE editor. This is just how CSS works, and it means that the default styles that your theme applies to standard HTML will also apply to TinyMCE, as well as any HTML classes that the editor uses that also happen to be … Read more

Change post featured image

Using background-size: cover instead of background-size: contain with a custom background-position ? It will cut images but preserve the same format/size for all.

wp_list_pages two columns

I got everything working, but had to change my approach to get it working the way I wanted. Basically, the easiest approach (at least for me), was to create two menus…one for small screen sizes and one for larger ones. So, the code looks like: <!– Head –> <div id=”head”> <!– Nav –> <ul class=”nav”> … Read more