So, I have Simple:Press Forum installed and just recently came across Atahualpa. As I was customizing the theme, I realized that the forum was looking a little strange. The various headers within the forum were not colored correctly based on the forum's theme. I did a little investigation and narrowed the issue down to Atahualpa's style for tables. It seems Atahualpa's table style is bleeding into Simple:Press' theme styles.
I've been trying to find a good workaround for this and thought of the idea of editing Atahualpa's source so as to not include its style within the forum's page. As I'm fairly new to the WordPress API as well as the Atahualpa theme, I'm having a little trouble accomplishing this task.
So, I was wondering if someone could help me a bit here. Where should I look or where is it located within Atahualpa's source that pages are loaded? Any good hints towards some of the WordPress API that could help make this task easier? I'm pretty sure there is a way to exclude pages. I was thinking that maybe something as simple as an IF statement that would check if the page being loaded is the forum page or not. If so, just skip a good deal of the page loading within Atahualpa and if not, then continue on like usual. Would something like this work?
Also, I did find this: wp_list_pages('exclude=17,38' ); for the WordPress API but unable to find wp_list_pages called, if it is even called, within Atahualpa. I thought maybe I could exclude the forum's page id and be done with it. Assuming this doesn't affect, say the menu bar's page lists.
Sorry if my thoughts of fixing this minor issue are not fully clear. I'll be more than happy to answer any questions that arise. Thank you all for your time.
EDIT: Doing a bit more searching on this forum, I *think* the area I'm looking for might be lines 122-137 of index.php. Am I close?