How to edit this in my template?

Status
Not open for further replies.

pi0tr3k

Active Member
3,055
2009
768
10
I want to edit the places marked with green:
[slide]http://imgcentre.com/img/uploads/big/417dad5778.png[/slide]

If you still don't get me - I want to edit the forum borders, and add something extra on the place marked with green pencil. Like a flower brush or we, to make it more sexy.
I've looked in my template, and the images I want to edit aren't there. (In phpbb2 you have left, center & right image, and together they form a nice border") How do I do it in phpbb3?

Thanks <3
 
27 comments
pi0 just view the source of that page and search for that text in the source.You will get it.Then you can change or do something else by editing the file.

Thats is how I always change designs or themes :)
 
My bet would by by right clicking on the image you want to modify -> view background image -> then check the filename of the image.

Just edit that image en reupload it to your server and everything should be fixed.

-Whoo
 
go into colours.css

change background-color and/or background-image of forumbg for main forumlist and forabg for the topiclist.
It uses 2 classes, so change both.
 
It's not an image.
It's a colour.
Edit lines 60 and 64.
Change the colour to whatever you want (hex value).
And if you want to use an image, then add this below the background-color: #ffabb7;

So it looks like this:


Code:
.forabg {
    background-color: #ffabb7;
    background-image: url("{T_THEME_PATH}/images/image_goes_here");
}

.forumbg {
    background-color: #ffabb7;
    background-image: url("{T_THEME_PATH}/images/image_goes_here");
}

Put the image in ./styles/Pinkie/theme/images/image_goes_here
 
Nope, doesn't work. I've updated my colours.css, added the right location of that img, uploaded the img too, purged the cache and nothing :(
Old same shit :(
 
why dont you try to search and replace?

search for ffabb7 and replace it with the color you wanted.

If it changed anything, you atleast know you're at the right place
 
why dont you try to search and replace?

search for ffabb7 and replace it with the color you wanted.

If it changed anything, you atleast know you're at the right place
I don't want to change the color, I want to add an image behind the "COMMUNITY" text.

@The Dude: What you mean? :|
 
Status
Not open for further replies.
Back
Top