Endless Paradigm

Full Version: What EP Theme Are You Using?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8
Rawrsor Wrote: [ -> ]Is there any way I can change the color from blue to black or something?

Change the colour in the background property for the ".postbit-main" style to whatever you want. RGBA is used for alpha transparency.


jammz Wrote: [ -> ]I also think the borders are somehow images. When I access EP from School, formatting's gone (Borders, backing etc.) but a quick look in Element inspector shows no images for post structure etc.

The theme was never made for Internet Explorer. >_>
Senseito7 Wrote: [ -> ]
jammz Wrote: [ -> ]I also think the borders are somehow images. When I access EP from School, formatting's gone (Borders, backing etc.) but a quick look in Element inspector shows no images for post structure etc.

The theme was never made for Internet Explorer. >_>

Oh
Facepalm
Senseito7 Wrote: [ -> ]
Rawrsor Wrote: [ -> ]Is there any way I can change the color from blue to black or something?

Change the colour in the background property for the ".postbit-main" style to whatever you want. RGBA is used for alpha transparency.

So wait, how do I do this? >.<
Rawrsor Wrote: [ -> ]
Senseito7 Wrote: [ -> ]
Rawrsor Wrote: [ -> ]Is there any way I can change the color from blue to black or something?

Change the colour in the background property for the ".postbit-main" style to whatever you want. RGBA is used for alpha transparency.

So wait, how do I do this? >.<

Code:
@-moz-document domain("endlessparadigm.com")
{
body {
  background: url("YOUR BACKGROUND GOES HERE") !important; background-attachment: fixed !important; background-position: center center !important; background-size: 100% !important
}
.postbit-main {
  background: none repeat scroll 0% 0% rgba(106, 162, 254, 0.7) !important;
}
}


This should do it. Replace the three R/G/B values to whatever you want (0,0,0 being black and 255,255,255 for white, for example) followed by a an opacity (0.7 meaning 70%).

It didn't do anything... ;_;
Try pasting in Custom CSS here: http://endlessparadigm.com/forum/usercp....on=options

Remove the lines starting with @ first.
Simple Blue for the win

Don't think I have ever changed it.
crystal black :)
ZiNgA BuRgA Wrote: [ -> ]Try pasting in Custom CSS here: http://endlessparadigm.com/forum/usercp....on=options

Remove the lines starting with @ first.

STILL didn't do anything :I
Rawrsor Wrote: [ -> ]STILL didn't do anything :I

It works for me...

[Image: AKOZE.jpg]

but only affects the posts.

EDIT:
I'm currently finding all the blue bits and turning 'em black. I'll post the code when I'm done.
The code is down below. Append it to the rest of the code and it'll be done.

Code:
.postbit-main {
  background: none repeat scroll 0% 0% rgba(25, 25, 25, 0.7) !important;
}
.postbit-userinfo {
  background: none repeat scroll 0% 0% rgba(25, 25, 25, 0.7) !important;
}
.breadcrumb {
  background: none repeat scroll 0% 0% rgba(25, 25, 25, 0.7) !important;
}
.pagination {
  background: none repeat scroll 0% 0% rgba(25, 25, 25, 0.7) !important;
}
.tborder {
  background: none repeat scroll 0% 0% rgba(25, 25, 25, 0.7) !important;
}
button, input[type="reset"], input[type="button"], input[type="submit"]{
  background: none repeat scroll 0% 0% rgba(25, 25, 25, 0.7) !important;
}


and where in the CSS affects the text color of the posts?

Pages: 1 2 3 4 5 6 7 8
Reference URL's