Making buttons side by side in Wordpress page

vintageadult

Regular Member
Joined
Nov 28, 2014
Messages
221
Reaction score
5
Id like to put buttons side by side instead of sub by sub in wordpress page: how can i do that?

Here is the link of this page.

 
Last edited:
My opinion is, first decrease the size of the buttons.
 
Id like to put buttons side by side instead of sub by sub in wordpress page: how can i do that?


Use any Theme Editor it will be very easy to Drag & Drop new Button Side by side , or if you can share which theme you are using then we can help you much better.
 
Depends on which theme and plugins you are using. And how exactly you set up the site.

Try using Site Origin Page Builder, it can help a lot with setting up the layout for the site.
 
Use any Theme Editor it will be very easy to Drag & Drop new Button Side by side , or if you can share which theme you are using then we can help you much better.

Its very hard to make iy by theme editor.
Our theme is Twenty fifteen default wordpress theme.
Could you give me an html code for this?
 
Depends on which theme and plugins you are using. And how exactly you set up the site.

Try using Site Origin Page Builder, it can help a lot with setting up the layout for the site.
I think an html or css container would help but I dont actually know the correct codes to do this.
 
Test this code :-

<img src="pic_mountain.jpg" style="float: left; width: 30%; margin-right: 1%; margin-bottom: 0.5em;" alt="Mountain View" style="width:304px;height:228px;">
<img src="pic_mountain.jpg" style="float: right; width: 30%; margin-right: 1%; margin-bottom: 0.5em;" alt="Mountain View" style="width:304px;height:228px;">

or

Have a look over this Link .
 
Don't forget any css you do, if you are going to use css, you must put in a child theme, or it will be lost next update
 
Test this code :-

<img src="pic_mountain.jpg" style="float: left; width: 30%; margin-right: 1%; margin-bottom: 0.5em;" alt="Mountain View" style="width:304px;height:228px;">
<img src="pic_mountain.jpg" style="float: right; width: 30%; margin-right: 1%; margin-bottom: 0.5em;" alt="Mountain View" style="width:304px;height:228px;">

or

Have a look over this Link .

So you mean this code will be put in child css and the page html code should be change by adding this img src, right?
 
You are using Wordpress , goto your page > edit option > now there you can put code and normal text too so edit in code of the text.
 
You can use the Wordpress Table Plugin and put them in cells on the page.
 
Back
Top