I'm attempting to edit a CSS file to remove the "char" picture at the top of the website (will link at bottom) where in the CSS file would that info be located im assuming i just need to delete it, it was a prebuilt template but we are going Order side for warhammer so we dont want the Destruction side characters on top.
#navmenu ul { list-style:none; margin:0; padding:0; }
#navmenu ul li { background:url('http://dkpfiles.com/dkp-templates/war/nav_separator.png') left center no-repeat; display:inline; height: 25px; list-style:none; margin:0; padding:0 15px 0 27px; }
/* The next rules (all preceded with bigcal) are for the 'Big Calendar' (bigcalendar.php) */
/* this is the table that displays the calendar info */ .bigcal {width:100%;border-style:inset;border-width:1px;}
/* This is the header of the calendar, displaying the month and year, and the links to the next months */ .bigcalheader{font-size:16pt;font-weight:bold;background:url('http://dkpfiles.com/dkp-templates/war/post-header.jpg') repeat-x;}
/* Day Labels 'Sunday' 'Monday' etc */ .bigcaldayheader{font-size:10pt;font-weight:bold;background:url('http://dkpfiles.com/dkp-templates/war/post-header.jpg') repeat-x;}
/* This is the class for each day */ .bigcalday {width:14%;border-style:solid;border-color:#c02f20;border-width:1px;height:100px;background:#250101;}
/* This is a class that is displayed on event labels (8:00pm - Gruul's Lair) */ .bigcallabel{font-size:8pt;cursor:pointer}
/* This is the div containing the day of the month */ .bigcaldaylabel{font-size:8pt;background:url('http://dkpfiles.com/dkp-templates/war/post-header.jpg') repeat-x;text-align:center}
/* The class when a day on the calendar is being hovered over */ .bigcalday_hover{border-color:#D61318}
/* One of the classes displayed on today */ .bigcalcurrent{border-color:#000000;background:#ff0000}
/* One of the classes to display is something is scheduled on that day */ .bigcalsomething{}
/* This is going to be the Arrows to the right and left */ .bigcalheader a{color:}
/* This is the div that gets clicked to add a new item. The default image is a plus. The Overflow:hidden is because IE, for whatever reason, wants to make it higher than the height attribute */ .bigcalplus{ position:relative; top:2px; float:right; width:10px; height:10px; overflow:hidden; line-height:1px; background-image:url(http://www.dkpsystem.com/plus.gif); cursor:pointer;}
/* A day that's not in the current month (at the beginning and end of the calendar display) */ .bigcalblank {}
/* The following are the rules for tabs */ div.tabrow{float:left;width:100%;padding-top:5px;margin-bottom:0px !important} ul.tabrow, ul.tabrow li{list-style-type:none;margin:0;padding:0} ul.tabrow{margin-left:10px;} ul.tabrow li{list-style-image:none;float:left;margin-right: 3px;text-align:center;font-size:inherit} ul.tabrow a{float:left;width:8em;padding: 5px 0;background-color:#000000;border-color:#410102;border-style:solid;border-width:1px 1px 0 1px;} ul.tabrow a:hover {background:#430003;color:#ffffff} ul.tabrow li.selected a,ul.tabrow li.selected a:hover {background-color:#270000;color:#ffffff};
This code is actually in the HTML itself (it's a javascript script) at the bottom of your page, that would allow you to change the locations of the images that cycle.
But you simply hide the character pictures side by adding display:none to the #character rule.