COZY Campus Adult Webmaster Forums

 
 
 


Go Back   COZY Campus Adult Webmaster Forums > Newbie Help

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 12-16-2007, 08:54 AM
Mr Softy Mr Softy is offline
Cozy Freshman
 
Join Date: Dec 2007
Location: NY
Posts: 33
Template Trouble - Run Away Header

Im using a template and for some reason, on some pages the header is off. It lowers and leaves a big space on the top of the page. Not sure what the name of the problem is. I think it has something to do with too much text not sure but i can't shorten the text so thats not an option. Besides it would be a pain in the ass to always have to limit the text length. I guess it's text overload?.. I tried some css code to see if it would work but it didn't.
Reply With Quote
  #2  
Old 12-16-2007, 12:45 PM
horney's Avatar
horney horney is offline
Warning! Learner Driver!
 
Join Date: Nov 2007
Location: Yorkshire, Egland
Posts: 198
Send a message via ICQ to horney Send a message via AIM to horney Send a message via Yahoo to horney
It sounds as though the path to the banner is wrong or incomplete. The space is created for it by the image tag, but the image itself is not being called. e.g.

<img src="path/to/banner/image.png" width="486" height="60" alt="altwording"> where the path/to/banner/ part is wrong or the image.png is not spelt correctly.
Reply With Quote
  #3  
Old 12-16-2007, 06:37 PM
Mr Softy Mr Softy is offline
Cozy Freshman
 
Join Date: Dec 2007
Location: NY
Posts: 33
No i just tried what you said did not work, but this is a premade template it didn't come with a header banner actually. Whats at the top is a tablerow, it moves down like 2 inches on the pages with alot of text.
Reply With Quote
  #4  
Old 12-16-2007, 06:53 PM
horney's Avatar
horney horney is offline
Warning! Learner Driver!
 
Join Date: Nov 2007
Location: Yorkshire, Egland
Posts: 198
Send a message via ICQ to horney Send a message via AIM to horney Send a message via Yahoo to horney
You say it happens on some pages, so I assume it doesn't happen on others. If it's the same banner each time, called from the same place, that would indicate a path problem or, less likely, a permissions problem.

If it's not that, we'll need a far clearer description in order to help you.

Where is the text appearing? Is it the same text as you are using in the alt property for the image?

Bear in mind that the path to a page in one folder is not the same as the path to a file in another folder.
Reply With Quote
  #5  
Old 12-16-2007, 07:31 PM
Mr Softy Mr Softy is offline
Cozy Freshman
 
Join Date: Dec 2007
Location: NY
Posts: 33
The pages are all the same, except for the text, there is no images. I noticed the problem is only on pages with alot of text. So im almost sure thats why it's doing this. I will try to mess around with it some more.
Reply With Quote
  #6  
Old 12-16-2007, 09:15 PM
horney's Avatar
horney horney is offline
Warning! Learner Driver!
 
Join Date: Nov 2007
Location: Yorkshire, Egland
Posts: 198
Send a message via ICQ to horney Send a message via AIM to horney Send a message via Yahoo to horney
Ah. So it's a text banner? That's fine. How is it contained?

If the space any other text goes into is restricted and there is too much text to fill that space, and depending how the page has been written, that's a possibility.

But then, if I had a template like that, I'd scrap the template and use another one. Text should certainly not be forced upwards and misalign what went before it. Nor should anything else, for that matter.

Do you think you could post the code, or the URL so we can view the source code?
Reply With Quote
  #7  
Old 12-17-2007, 01:49 AM
Mr Softy Mr Softy is offline
Cozy Freshman
 
Join Date: Dec 2007
Location: NY
Posts: 33
ok cool i posted the templates up, i still can't figure it out. I suck at html & use a wysiwyg editor. Have a look at the source let me know if it is the textbox atribute. Your probably right it's probably set too small. I can't imagine what else it would be.

http://ginseng77.gigacities.net/CorrectTemplate.htm
http://ginseng77.gigacities.net/ScrewedUpTemplate.htm
http://ginseng77.gigacities.net/rawtemplate.htm

ok check those out
Reply With Quote
  #8  
Old 12-17-2007, 08:17 AM
horney's Avatar
horney horney is offline
Warning! Learner Driver!
 
Join Date: Nov 2007
Location: Yorkshire, Egland
Posts: 198
Send a message via ICQ to horney Send a message via AIM to horney Send a message via Yahoo to horney
You need to take a course in html as a very first priority. There are a few things which spring out and explaining them is not going to help you until you get a grasp of some basics, but here goes anyway.

Within that large block of text, up there at the start, you have a pair of div tags with nothing in them. My guess is they should probably be holding the whole lot. those div tags look like this:

<DIV></DIV>

The whole page is written in tables so I assume it is an old one. Much of your text is outside any table cells. Everything on that page should be inside cells. A cell has the tag <td> to start it and </td> to end it, although the author of your template has a mish mash of upper and lower case lettering for html tags.

The amount of text on the page is overflowing at the bottom in my browser. It is not breaking anything at the top. If you are going to design web pages, use a standards-compliant browser. Scrap IE until it comes time to test, then fix what it breaks.

There is mention of PHP in the first URL given. If the template is php driven, you really shouldn't be attempting to use it until you are at least capable of sorting out the html effectively, so yo can identify where any problems lie. In 2007 you shouldn't be using table-based layout anyway. Start as you mean to go on. Learn how to code for compliance and learn once, rather than absorbing a load of crap and have to go through a second learning curve.

As a starter, go to Web Monkey and click on the beginners tab to find the tutorials you need. You could also have a look in the webmaster tuorials at Cozy Academy, just click the link below.

OK, you have to start somewhere. Now you know that template isn't it.
Reply With Quote
  #9  
Old 12-17-2007, 09:21 AM
Mr Softy Mr Softy is offline
Cozy Freshman
 
Join Date: Dec 2007
Location: NY
Posts: 33
Ok i will scrap the template and either try to find a better one or just make my own. Tables Old? What would i use instead of tables? I thought tables are a main thing that eveyone uses. Im confused on that one. I will have a look at some templates i downloaded in the meantime to see if i can see an example of what you mean. Maybe just images and textboxes?
Reply With Quote
  #10  
Old 12-17-2007, 09:42 AM
horney's Avatar
horney horney is offline
Warning! Learner Driver!
 
Join Date: Nov 2007
Location: Yorkshire, Egland
Posts: 198
Send a message via ICQ to horney Send a message via AIM to horney Send a message via Yahoo to horney
I've given you some pointers for where to start learning. This is not the place for a discussion on the rudementaries of html, xhtml or web standards compliance. As an adult-specific webmasters discussion board, it is only fair on other users to assume at least that level of knowledge before posting here.
Reply With Quote
  #11  
Old 12-19-2007, 08:23 AM
Mr Softy Mr Softy is offline
Cozy Freshman
 
Join Date: Dec 2007
Location: NY
Posts: 33
ok i understand, i need to find a good book that covers all the basics. Thanks for your help
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -5. The time now is 06:53 PM.

Support our Cozy adult webmaster forum Sponsors:

Porn Reviews
Honest Porn Reviews
Stroke King Blue Design Studios
Blue Design Studios
  Adult Reviews
Adult Reviews

Pussy Cash FTVCash Etu-Cash Traffic Cash Gold GJ Servers
AdXpansion        

 

CozyFrog.com  |   CozyFlash.com  |   Friends & Links
© 2002-10 CozyCampus.com | Adult Forums for Webmasters! | 18+ ONLY!
Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.