How to add background image in the responses

Support for PhpBB3.
Post here to get help with any phpBB3 related issue
Forum rules
In order the get any support, you will have to do following:
1. Use a describing title!
2. Describe your problem and what happened when the problem occured
3. Tell us what version of phpBB3 you are currently using.
If not your topic may be ignored or locked!

Re: How to add background image in the responses

Post by Galandas »

here image
sfondo image.rar
You do not have the required permissions to view the files attached to this post.

Re: How to add background image in the responses

Post by Steve »

open colours.css
find:

Code: Select all

.content {
	color: #333333;
add after:

Code: Select all

	min-height: 150px;
	background-image: url("{T_THEME_PATH}/images/sfondo.gif");
	background-repeat: no-repeat;
	background-position: center;
is that how you wanted it ?
pic:
bg[ic.PNG
You do not have the required permissions to view the files attached to this post.

Re: How to add background image in the responses

Post by Galandas »

I would not this result
post4.JPG
You do not have the required permissions to view the files attached to this post.

Re: How to add background image in the responses

Post by Steve »

ok so you took out the no-repeat and used repeat.
happy?

Re: How to add background image in the responses

Post by Galandas »

I put the image taken from another site not yet arrived solution.............. :?

this is the result of your suggestion
post5.JPG

Code: Select all

/* Content container styles
----------------------------------------*/
.content {
	color: #333333;
       min-height: 300px;
       background-image: url("{T_THEME_PATH}/images/rowbck.gif");
       background-repeat: repeat;
       background-position: center;
}


this result here and I want to get

[thumbnailpop]http://i37.tinypic.com/t6bdhy.jpg[/thumbnailpop]
You do not have the required permissions to view the files attached to this post.

Re: How to add background image in the responses

Post by Steve »

so im lost :?
you can try some repeat css codes
this repeat will display the image once:

Code: Select all

background-repeat: no-repeat;
this repeat will just carry on:

Code: Select all

background-repeat: repeat;
this repeat will just go across the page:

Code: Select all

background-repeat: repeat-x;
this repeat will go down the page:

Code: Select all

background-repeat: repeat-y;
im totally lost here sorry :oops:

Re: How to add background image in the responses

Post by Galandas »

I know that are used repeat so I tried them all, anyway thanks so much :thumb:



see this style as it did?
http://www.awesomestyles.com/phpbb3-sty ... n&version=

Re: How to add background image in the responses

Post by Steve »

Got ya ,sorry your english isnt as bad as mine ;)

here : liquid image css

and phpBB3 doesnt support css3 ,you need to use a js ,javascript.

Re: How to add background image in the responses

Post by Galandas »

I solved it worked............ :thumb:

Re: How to add background image in the responses

Post by Steve »

Cool and the solution was ...