Page text box with adjustable background image

Hello,

How can i add text box’es with this background (http://www.e-buhalterija.lt/wp-content/uploads/2015/04/post.png) to all pages of http://www.e-buhalterija.lt/?
Now im using buttons (Forget About Shortcode Buttons) like a text box, but i am not happy…
Maybe there’s a simple solution?
Sorry for my bad english.
I hope you understand everything. :slight_smile:

It is not possible to use this kind of image for content background because this theme is responsive which means that it adopts based on device screen width. Once device screen gets smaller content will get longer but image can’t just resize like that and still make it perfectly fit.

One thing you can try is to divide your image and add background as border on all sides but still results will be far from perfect. A much better alternative would be to use some CSS border or some other styling but not image.

What would you suggest? I’m not knowledgeable in coding / styling …

One more guestion:
How can i add background image under menu buttons (in menu bar)?

About text box i found a solution.
I searched new picture with gold borders,
inserted in custom css this:

.border {
border-style: solid;
border-width: 27px;
-moz-border-image: url(http://www.e-buhalterija.lt/wp-content/uploads/2015/04/97000.jpg) 27 repeat;
-webkit-border-image: url(http://www.e-buhalterija.lt/wp-content/uploads/2015/04/97000.jpg) 27 repeat;
-o-border-image: url(http://www.e-buhalterija.lt/wp-content/uploads/2015/04/97000.jpg) 27 repeat;
border-image: url(http://www.e-buhalterija.lt/wp-content/uploads/2015/04/97000.jpg) 27 fill repeat;
}

In post this:

<div class=“border”>
TEXT
</div>

And everything is perfect. :slight_smile: