Need a geek? Geeks to Go offers free, quality tech support -- in terms anyone can understand. Volunteers are waiting to help, friendly, technology experts who have knowledge to share, and enjoy helping others. Feel free to browse the site as a guest. However, you must log in to reply to existing topics, or to start a new topic. Other benefits of joining include richer forum features, and removal of all advertising. Learn more in our Welcome Guide Infected? Malware and Spyware Cleaning Guide. What are you waiting for? Click here to join for free today!
   
2 Pages V   1 2 >  
Reply to this topicStart new topic
Help with Joomla
datarunner
post Jun 18 2009, 04:32 AM
Post #1


GeekU Junior
Group Icon
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
Go to the top of the page
 
+Quote Post
Major Payne
post Jun 18 2009, 01:18 PM
Post #2


Trusted Techie
Group Icon
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 {
    height: 30px;
    background: url(../images/page_header_bg.png) 50% 0 repeat-x;
}
on this CSS File.

Remove the whole thing.
Go to the top of the page
 
+Quote Post
datarunner
post Jun 18 2009, 04:51 PM
Post #3


GeekU Junior
Group Icon
Posts: 367
From: Scotland, UK
OS: Windows Vista, XP, Server 2003, Ubuntu, VM's with various OS's



QUOTE (Major Payne @ Jun 18 2009, 08:18 PM) *
That black banner is at http://www.lcchurch.co.uk/templates/yoo_su...e_header_bg.png. Look for:
CODE
div#page-header {
    height: 30px;
    background: url(../images/page_header_bg.png) 50% 0 repeat-x;
}
on this CSS File.

Remove the whole thing.


Hi There

Thanks very much for that but which part of the CSS do I go to?

Regards
Go to the top of the page
 
+Quote Post
Major Payne
post Jun 18 2009, 05:25 PM
Post #4


Trusted Techie
Group Icon
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
Go to the top of the page
 
+Quote Post
datarunner
post Jun 19 2009, 02:13 AM
Post #5


GeekU Junior
Group Icon
Posts: 367
From: Scotland, UK
OS: Windows Vista, XP, Server 2003, Ubuntu, VM's with various OS's



QUOTE (Major Payne @ Jun 19 2009, 12:25 AM) *
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
Go to the top of the page
 
+Quote Post
Major Payne
post Jun 19 2009, 03:35 AM
Post #6


Trusted Techie
Group Icon
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.
Go to the top of the page
 
+Quote Post
datarunner
post Jun 19 2009, 03:39 AM
Post #7


GeekU Junior
Group Icon
Posts: 367
From: Scotland, UK
OS: Windows Vista, XP, Server 2003, Ubuntu, VM's with various OS's



QUOTE (Major Payne @ Jun 19 2009, 10:35 AM) *
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
Go to the top of the page
 
+Quote Post
datarunner
post Jun 19 2009, 04:00 AM
Post #8


GeekU Junior
Group Icon
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
Go to the top of the page
 
+Quote Post
datarunner
post Jun 19 2009, 04:38 AM
Post #9


GeekU Junior
Group Icon
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
Go to the top of the page
 
+Quote Post
datarunner
post Jun 19 2009, 04:41 AM
Post #10


GeekU Junior
Group Icon
Posts: 367
From: Scotland, UK
OS: Windows Vista, XP, Server 2003, Ubuntu, VM's with various OS's



QUOTE (datarunner @ Jun 19 2009, 11:38 AM) *
Hi There

Got it - Thanks

Now I just need the Surface logo removed

Regards


Hi There

Solved

Thanks very much for your time on this Major Payne - Top Man

Regards
Go to the top of the page
 
+Quote Post
Major Payne
post Jun 19 2009, 04:45 AM
Post #11


Trusted Techie
Group Icon
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. tongue.gif
Go to the top of the page
 
+Quote Post
datarunner
post Jun 19 2009, 05:01 AM
Post #12


GeekU Junior
Group Icon
Posts: 367
From: Scotland, UK
OS: Windows Vista, XP, Server 2003, Ubuntu, VM's with various OS's



QUOTE (Major Payne @ Jun 19 2009, 11:45 AM) *
You're very welcome. You did the hard stuff. tongue.gif


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
Go to the top of the page
 
+Quote Post
Major Payne
post Jun 19 2009, 07:44 AM
Post #13


Trusted Techie
Group Icon
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.
Go to the top of the page
 
+Quote Post
datarunner
post Jun 19 2009, 07:47 AM
Post #14


GeekU Junior
Group Icon
Posts: 367
From: Scotland, UK
OS: Windows Vista, XP, Server 2003, Ubuntu, VM's with various OS's



QUOTE (Major Payne @ Jun 19 2009, 02:44 PM) *
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
Go to the top of the page
 
+Quote Post
Major Payne
post Jun 19 2009, 08:13 AM
Post #15


Trusted Techie
Group Icon
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.
Go to the top of the page
 
+Quote Post

2 Pages V   1 2 >
Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 

RSS 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