|
[SOLVED] Removal of separators between panels
|
| patrickalexson |
Posted on 17-03-2011 23:43
|

Junior Member

Posts: 10
Joined: 07/12/2009
|
Hello to all,
Not quite sure if this is being posted in the correct section, feel free to slap me if not.
Is it possible to remove what I can only describe as <HR> Horizontal Rulers between panels? As an example, the default welcome message panel contains the word 'Welcome' and underneath it is a horizontal bar - obviously to help the reader denote where particular content falls under. Can this be removed and if so, where should I be looking (or rather what file should I edit)?
Correct answers shall receive +100xp to honor
Edited by patrickalexson on 18-03-2011 02:17
|
| |
|
|
| PHPar |
Posted on 18-03-2011 01:19
|

Admin

Posts: 88
Joined: 03/03/2010
|
add screenshot for your request |
| |
|
|
| patrickalexson |
Posted on 18-03-2011 01:42
|

Junior Member

Posts: 10
Joined: 07/12/2009
|
After a bit more troubleshooting, it would appear that this issue pertains only to the current theme I am using and a few others that are available for use. I should probably check out the CSS file for the theme perhaps...
As an example, on this site's welcome/home page, there is...

... a horizontal bar. In my scenario, this bar is present below the title of each panel. If I switch to some of the other themes, the bar is replaced by different elements so it has to be relative to theme I am using. |
| |
|
|
| NobNob |
Posted on 18-03-2011 01:49
|

Member

Posts: 78
Joined: 02/05/2006
|
Yes, it is possible...
Remove or comment out:
openside("Panel Name"); and closeside();
Before:
openside("name");
echo "content";
closeside();
After:
// openside("name");
echo "content";
// closeside();
|
| |
|
|
| patrickalexson |
Posted on 18-03-2011 01:59
|

Junior Member

Posts: 10
Joined: 07/12/2009
|
And I would wish to do that in the welcome_message_panel.php in the Infusions directory, correct?
Its worded...
[code]opentable($locale['global_035']);
echo stripslashes($settings['siteintro'])."";
closetable();
If I change to...
//opentable($locale['global_035']);
echo stripslashes($settings['siteintro'])."";
//closetable();
It seems to work just fine - although I want to make sure that's what I should be doing.
Thanks for the help! |
| |
|
|
| NobNob |
Posted on 18-03-2011 02:02
|

Member

Posts: 78
Joined: 02/05/2006
|
Yes, that is correct.
|
| |
|
|
| patrickalexson |
Posted on 18-03-2011 02:16
|

Junior Member

Posts: 10
Joined: 07/12/2009
|
Awesome. Problem solved - thanks for the quick reply and the short and to the point instructions. |
| |
|
|
| NobNob |
Posted on 18-03-2011 02:45
|

Member

Posts: 78
Joined: 02/05/2006
|
No problem. You are welcome.
Good luck !
|
| |
|