Jump to content

Recommended Posts

Posted (edited)

Hi guys, this isn't edugeek joomla related but more general Joomla. Wasn't quite sure where else it would go.

 

I've downloaded and installed a template and just trying to play about with how it looks before I start messing with the articles/menus etc.

It looked messy with latest posts/popular at the top of the page so I took them out. I now have a whopping great gap between the top of the page and my logo (work in progress).

Anyone have an idea what I need to change in order for the grey gap to disappear, is it a generic term in Joomla?

 

Educational Psychology Services (UK) Ltd

(I had nothing to do with the site name by the way!) :D

 

is the URL to the site

 

(Even if the grey top bit was moved below the header would be fine if it would effect the layout. Just not really sure what I'm looking for to do this, i'm learning though!) :(

 

Thanks in advance any help at all is appreciated.

Edited by apoth0r
Posted (edited)

Best help I can give you is find out what id/class the gray box has,

 

Then search the css for that id/class, from there you can change it's color/positioning/make it hidden (the last one might play with your template so be careful)

 

If you can't find its ID or Class, then find out the hex value of that color is (grey is usually #666666 I think) by screenshotting and put it into fireworks or something, then do a search for that hex value in css.

Edited by mossj
Posted

I looked at it last night and wondered if the grey are was an image. Today I get the same redirection error.

Jeff

ScreenHunter_01 Apr. 01 18.01.gif

Posted

Welcome to Educational Psychology Services (UK) Ltd << Sorry redirects screwed up again :-(

 

UK2 seem to have a hard time doing redirects and it's getting on my nerves. As well as the grey area on the site does anyone have any clue about redirecting?

Trying to get the Index of / to automatically point to Welcome to Educational Psychology Services (UK) Ltd but it just doesn't seem to want to do it using the cpanel.

Had problems with my own site too (UK2 hosted). It's a real pain in the bum!

 

Thanks again for any replies

Posted (edited)

I'm guessing its one of these classes

 






 

More than likely the newsflash class, so go into the main css of the site and put this at the top

 

div.user div.newsflash
{
      background: #000000;
      background-image: none;
}

 

This should turn the gray box black, if it doesn't change *newsflash* to one of the other classes...

 

Once you have narrowed it down to which class it is your options include.....

  • Changing the color using css "background: #******;"
  • Changing the size using css "height: *px; width: *px;"
  • Changing the visability using css "visability: hidden;"
  • Deleting it from the index.php & template.xml

 

P.S If you can't narrow it down, it may be that a background image is set (it looks a bit fancy for just a standard background). So open up the main css and do a find on "newsflash" and the rest should be history.

 

P.S.S If you choose to delete it from index.php there may be things inside the div, Make sure you DELETE them too.

 

P.S.S.S Guy below me just repeats what I say ^_^

Edited by mossj
  • Thanks 1
Posted

It looks as though it is an image, the user/newsflash areas are only at the very tops of the grey area, now to find out what it is called.

Thanks for your help

Posted
It looks as though it is an image, the user/newsflash areas are only at the very tops of the grey area, now to find out what it is called.

Thanks for your help

 

But it has to be marked in the CSS somewhere as there is no tags above your logo try a search for "bac_user" in your css and change that to "visability: hidden;" if you find it.

 

P.S Just so you know the image thats creating the 'gray box' is called "bac_user.png"

  • Thanks 1
Posted (edited)




		countModules('user1 and user2')) : ?>
	style="width:520px;"
	
	style="width:930px;"
	
>

 

If I remove that code I no longer have the grey box but the background gray has also removed, so it's something along those lines, I've tried taking out bits of the code but to no avail :(

I believe it uses the image top_mod.png << Although having removed both bot_mod.png AND top_mod.png it still displays.

 

Sorry for being a pain :-(

Edited by apoth0r
Posted



		countModules('user1 and user2')) : ?>
	style="width:520px;"
	
	style="width:930px;"
	
>

 

If I remove that code I no longer have the grey box but the background gray has also removed, so it's something along those lines, I've tried taking out bits of the code but to no avail :(

I believe it uses the image top_mod.png << Although having removed both bot_mod.png AND top_mod.png it still displays.

 

Sorry for being a pain :-(

 

If you remove that, your leaving a div open (note the at the top). Can you attach your css code to a post (or pm me with a download here) and I will take a better look.

Posted

Guys thank you so much for your help, after finding the bac_user.png image I was able to set it to "height:0px;" and it's gone! wh00p wh00p!

Can finally get on with other things now! Lol!

 

Seriously though, i'm very appreciative of all your help THANK YOU VERY MUCHLY!!! :D :D :D

Posted

My first post was correct :confused:, appart from it being the Newsflash class(I downloaded your css anyway :p),

 

From your current.css

div.user{
width:930px;
height:0px;
background-image:url(../images/bac_user.png);
background-repeat:repeat-x;
background-position:top left;
padding-left:10px;
float:left;
}

 

I told you :D

Posted

Sorry buddy, it was all foreign when I first started looking at it. After prowling a bit it started to make a bit more sense.

 

Thanks for your patience though, top dog! :D

Posted
Sorry buddy, it was all foreign when I first started looking at it. After prowling a bit it started to make a bit more sense.

 

Thanks for your patience though, top dog! :D

 

Sorry just assumed that because you ran your own company, you'd know most of it.

 

Check out W3Schools Online Web Tutorials for info on CSS & any other web language. It proved invaluable whilst I was learning.

Posted

Nothing better then throwing yourself in the deep end!

I'm ok with some stuff, Joomla just throws me a curve-ball every so often, I'm sure you've been there :D

 

Many thanks for your help anyhow, shall add that bookmark to my favourites for future reference, thank you.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...