Help with Joomla |
![]() ![]() |
Help with Joomla |
Jun 18 2009, 04:32 AM
Post
#1
|
|
|
GeekU Junior Posts: 367 From: Scotland, UK OS: Windows Vista, XP, Server 2003, Ubuntu, VM's with various OS's |
Hi All
I'm helping out our local church set up a website via Joomla CMS However I only have a basic understanding of Joomla If you have a look at their site: http://www.lcchurch.co.uk/ You will see they have a Yootheme template What I need to do is remove the black banner along the top and the Surface logo Any ideas on how to do this? Info very appreciated Regards |
|
|
Jun 18 2009, 01:18 PM
Post
#2
|
|
![]() Trusted Techie Posts: 5,228 From: Now in a MEMA (Katrina) Cottage OS: Win XP/Vista Home Premium. Backup PC: Commodore 64 with 300 baud modem! |
That black banner is at http://www.lcchurch.co.uk/templates/yoo_su...e_header_bg.png. Look for:
CODE div#page-header { on this CSS File.height: 30px; background: url(../images/page_header_bg.png) 50% 0 repeat-x; } Remove the whole thing. |
|
|
Jun 18 2009, 04:51 PM
Post
#3
|
|
|
GeekU Junior Posts: 367 From: Scotland, UK OS: Windows Vista, XP, Server 2003, Ubuntu, VM's with various OS's |
That black banner is at http://www.lcchurch.co.uk/templates/yoo_su...e_header_bg.png. Look for: CODE div#page-header { on this CSS File.height: 30px; background: url(../images/page_header_bg.png) 50% 0 repeat-x; } Remove the whole thing. Hi There Thanks very much for that but which part of the CSS do I go to? Regards |
|
|
Jun 18 2009, 05:25 PM
Post
#4
|
|
![]() Trusted Techie Posts: 5,228 From: Now in a MEMA (Katrina) Cottage OS: Win XP/Vista Home Premium. Backup PC: Commodore 64 with 300 baud modem! |
The CSS file link is to the CSS you have to edit. You just scroll down until you find "div#page-header" or do a Ctrl + F and type it in and let it search file for you. Highlight from "div#page-header" to the last brace "}" after "repeat-x;".
This post has been edited by Major Payne: Jun 18 2009, 05:26 PM |
|
|
Jun 19 2009, 02:13 AM
Post
#5
|
|
|
GeekU Junior Posts: 367 From: Scotland, UK OS: Windows Vista, XP, Server 2003, Ubuntu, VM's with various OS's |
The CSS file link is to the CSS you have to edit. You just scroll down until you find "div#page-header" or do a Ctrl + F and type it in and let it search file for you. Highlight from "div#page-header" to the last brace "}" after "repeat-x;". Hi There Many thanks again for replying. Do I edit the CSS on the link above or via the admin panel? Sorry for the noob questions Regards |
|
|
Jun 19 2009, 03:35 AM
Post
#6
|
|
![]() Trusted Techie Posts: 5,228 From: Now in a MEMA (Katrina) Cottage OS: Win XP/Vista Home Premium. Backup PC: Commodore 64 with 300 baud modem! |
What ever gets you to bring up the CSS file for editing. I never used the Admin Panel. If it has a File manager and shows you all the files for you site, then you should be able to select any file for editing.
|
|
|
Jun 19 2009, 03:39 AM
Post
#7
|
|
|
GeekU Junior Posts: 367 From: Scotland, UK OS: Windows Vista, XP, Server 2003, Ubuntu, VM's with various OS's |
What ever gets you to bring up the CSS file for editing. I never used the Admin Panel. If it has a File manager and shows you all the files for you site, then you should be able to select any file for editing. Hi There When I open template.css.php I get a totally different output from the link above. Am I opening the wrong file? Regards |
|
|
Jun 19 2009, 04:00 AM
Post
#8
|
|
|
GeekU Junior Posts: 367 From: Scotland, UK OS: Windows Vista, XP, Server 2003, Ubuntu, VM's with various OS's |
OK let me explain a bit better
when i download template.css.php it contains the following: <?php if (extension_loaded('zlib') && !ini_get('zlib.output_compression')) @ob_start('ob_gzhandler'); header('Content-type: text/css; charset: UTF-8'); header('Expires: ' . gmdate('D, d M Y H:i:s', time() + 3600) . ' GMT'); define('DS', DIRECTORY_SEPARATOR); define('PATH_ROOT', dirname(__FILE__) . DS); /* layout styling */ include(PATH_ROOT . 'layout.css'); if (isset($_GET['widthThinPx'])) echo 'body.width-thin div.wrapper { width: ' . $_GET['widthThinPx'] . 'px; }'; if (isset($_GET['widthWidePx'])) echo 'body.width-wide div.wrapper { width: ' . $_GET['widthWidePx'] . 'px; }'; if (isset($_GET['widthFluidPx'])) echo 'body.width-fluid div.wrapper { width: ' . intval($_GET['widthFluidPx'] * 100) . '%; }'; if (isset($_GET['styleswitcherFont']) && isset($_GET['styleswitcherWidth'])) { if ($_GET['styleswitcherFont'] && $_GET['styleswitcherWidth']) { echo 'div#styleswitcher { width: 90px; }'; } else { echo 'div#styleswitcher { width: 45px; }'; } } /* general tag styling */ include(PATH_ROOT . 'general.css'); /* menu styling */ include(PATH_ROOT . 'menu.css'); /* module styling */ include(PATH_ROOT . 'module.css'); /* joomla core styling */ include(PATH_ROOT . 'joomla.css'); /* third party extensions styling */ include(PATH_ROOT . 'extensions.css'); /* color styling */ if (isset($_GET['color']) && $_GET['color'] != '' && $_GET['color'] != 'default') { $suffixes = array('-layout'); foreach ($suffixes as $suffix) { $css_file = PATH_ROOT . $_GET['color'] . DS . $_GET['color'] . $suffix . '.css'; if (is_readable($css_file)) { include($css_file); } } } /* ie browser */ if (array_key_exists('HTTP_USER_AGENT', $_SERVER)) { $is_ie7 = strpos(strtolower($_SERVER['HTTP_USER_AGENT']), 'msie 7') !== false; $is_ie6 = strpos(strtolower($_SERVER['HTTP_USER_AGENT']), 'msie 6') !== false; if ($is_ie7 || $is_ie6) include(PATH_ROOT . 'iehacks.css'); if ($is_ie7) include(PATH_ROOT . 'ie7hacks.css'); else if ($is_ie6) include(PATH_ROOT . 'ie6hacks.css'); } ?> However I can open your CSS link in Firefox and click save as, which then prompts me to save this as template.css.php But wont that overite the original one? Regards |
|
|
Jun 19 2009, 04:38 AM
Post
#9
|
|
|
GeekU Junior Posts: 367 From: Scotland, UK OS: Windows Vista, XP, Server 2003, Ubuntu, VM's with various OS's |
Hi There
Got it - Thanks Now I just need the Surface logo removed Regards |
|
|
Jun 19 2009, 04:41 AM
Post
#10
|
|
|
GeekU Junior Posts: 367 From: Scotland, UK OS: Windows Vista, XP, Server 2003, Ubuntu, VM's with various OS's |
|
|
|
Jun 19 2009, 04:45 AM
Post
#11
|
|
![]() Trusted Techie Posts: 5,228 From: Now in a MEMA (Katrina) Cottage OS: Win XP/Vista Home Premium. Backup PC: Commodore 64 with 300 baud modem! |
You're very welcome. You did the hard stuff.
|
|
|
Jun 19 2009, 05:01 AM
Post
#12
|
|
|
GeekU Junior Posts: 367 From: Scotland, UK OS: Windows Vista, XP, Server 2003, Ubuntu, VM's with various OS's |
You're very welcome. You did the hard stuff. Hi Buddy Sorry to bother you again but if you look at the site again: http://lcchurch.co.uk The top banner is not in proportion with the template. Now Ive tried to resize it but nothing seems to help. Ideally I'd like the top banner to sit squarely (or rectangularly) on top of the grey box that contains the menu / content etc Any ideas? Regards This post has been edited by datarunner: Jun 19 2009, 05:43 AM |
|
|
Jun 19 2009, 07:44 AM
Post
#13
|
|
![]() Trusted Techie Posts: 5,228 From: Now in a MEMA (Katrina) Cottage OS: Win XP/Vista Home Premium. Backup PC: Commodore 64 with 300 baud modem! |
Are you talking about this image? That's a 1,000px × 600px image.
|
|
|
Jun 19 2009, 07:47 AM
Post
#14
|
|
|
GeekU Junior Posts: 367 From: Scotland, UK OS: Windows Vista, XP, Server 2003, Ubuntu, VM's with various OS's |
Are you talking about this image? That's a 1,000px × 600px image. Hi There Yes buddy thats right. Strange as I've uploaded it in different sizes but doesn't seem to change. Any way I can have it level and inline with the rest of it? Your help is greatly appreciated Regards |
|
|
Jun 19 2009, 08:13 AM
Post
#15
|
|
![]() Trusted Techie Posts: 5,228 From: Now in a MEMA (Katrina) Cottage OS: Win XP/Vista Home Premium. Backup PC: Commodore 64 with 300 baud modem! |
I am just not seeing what you are looking at in either Firefox or IE. Possibly I don't understand the problem. The image mentioned is centered on the page. There is some slight differences in opacity between the browsers, but you may not have coded for both browsers.
Been up all night working on pages so may not get back to you until later tonight. |
|
|
![]() ![]() |
Similar Topics
| Topic Title | Replies / Views | Topic Information | |||||
|---|---|---|---|---|---|---|---|
![]() |
37 / 319 | Today, 05:56 PM enrique_m started - last by enrique_m |
|||||
![]() |
12 / 112 | Today, 01:40 PM TheRonin started - last by Rorschach112 |
|||||
![]() |
6 / 68 | Yesterday, 09:01 PM chuckp73 started - last by andrewuk |
|||||
![]() |
4 / 25 | Today, 10:05 PM Kenglert started - last by Kenglert |
|||||
|
Time is now: 7th November 2009 - 11:41 PM |
Advertisements do not imply our endorsement of that product or service. The forum is run by volunteers who donate their time and expertise. We make every attempt to ensure that the help and advice posted is accurate and will not cause harm to your computer. However, we do not guarantee that they are accurate and they are to be used at your own risk. All trademarks mentioned on this page are the property of their respective owners.
© Geeks to Go, Inc. | All Rights Reserved | Privacy Policy | Advertising