MyBB Support

The ripped themes

Submitted by Bear, , Thread ID: 5674

Thread Closed

RE: The ripped themes

Krave
Lil bitch
Level:
0
Reputation:
8
Posts:
79
Likes:
9
Credits:
226
05-07-2015, 07:28 PM
#12
Use inspect elements or, view page source and then direct to the global.css file. Once in there, copy the code and paste it into a text editor such as notepad++ and add the website/forums url (http://example.com) to the beginning on the paths to the images.

So, if you copy something like this:

body {
color: fff;
background: url(.../.../.../images/theme/background.jpg) no-repeat;
}

a {
color: eeeeee;
text-decoration: none;
}

You'd edit the background of the body tag and replace the periods with the websites url, so it'd end up like this:

body {
color: fff;
background: url(http://example.com/images/theme/background.jpg) no-repeat;
}

a {
color: eeeeee;
text-decoration: none;
}

I'm sorry if this isn't that clear, but I'm a little tired at the moment.

Users browsing this thread: 1 Guest(s)