MyBB Community Forums

Full Version: Battlefield 3
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 9 10 11 12 13 14 15 16 17
Link styling is defined in global.css under

Quote:a:link {
color: #ffffff;
text-decoration: none;
}

a:visited {
color: #ffffff;
text-decoration: none;
}

a:hover, a:active {
color: #f5f5f5;
text-decoration: none;
}

and text color is defined under

Quote:table {
color: #FFFFFF;
font-family: "lucida grande", "lucida sans unicode", "arial", "verdana", "tahoma", sans-serif;
font-size: 12px;
}

for table elements and

Quote:body {
color: #FFFFFF;
font-family: "lucida grande", "lucida sans unicode", "arial", "verdana", "tahoma", sans-serif;
font-size: 12px;
line-height: 1.4;
text-align: center;
}

for the rest of content.

Change it as you want.

If you want to add only new classes and link styling to forumdisplay.php wrap variables with span with classes like thread_author,thread_title and thread_last post and in global.css add (this is for thread author under condition that you wrapped author variable with span tag and some class)

Quote:.thread_author {
color: #000000/*text color value*/;
}

.thread_author a:link {
color:#ffffff /*link state*/;
}
.thread_author a:hover {
color:#ffffff /*hover state*/;
}

.thread_author a:active {
color:#ffffff /*active state*/;
}
.thread_author a:visited {
color:#ffffff /*visited state*/;
}

replace #ffffff color values with your own (in hex value).
Closed by request.
Opened by request.
BF3 Theme 1.5 update

-Postbit_rep_button fixed (added button class)
-Few edits on header_welcomeguest and portal_login templates

BF3.zip is attached to first post until new release is approved on mods db.
omfg bada** theme for free >.> sweet theme man gj Big Grin
(2012-03-29, 06:48 PM)Johnny S Wrote: [ -> ]Link styling is defined in global.css under (...)

Thank you! I've managed to implement modifications!
'AIM Remote' is outdated... you may want to remove it or update it your theme accordingly.
misc_imcenter_aim isn't updated or touched in BF3 theme (or in 1.6.7 update).Image locations for AIM are definied in that template (misc_imcenter_aim) and if you want to put them localy and load them instead of remote images in img src use {$theme['imgdir']}/somaaolimage.gif .
Well it's not the image location that's the problem.
I didn't do any edits to misc_imcenter_aim template (template name isn't green,it's blue that indicates no edits).That problem is AOL specific and it isn't related to BF3 theme (i'll bet that all other themes are affected to).

Warning button styling is definied in global.css under
a.button {
	border:1px solid #0c0f12;
	background:#161c21 url(../../../images/bf/button_bg.png) top center;
	background-repeat:repeat-x;
	padding:4px 6px;
	font-family: 'VisitorTT1BRKRegular';
	font-size:11px;
	color:#ffffff;
}

a.button:hover,
a.active {
	background:#11161a url(../../../images/bf/button_active_bg.png) top center;
	background-repeat:repeat-x;
	border:1px solid #0c0f12;
	color:#ffffff;
}

that styling is used in all postbit buttons to.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17