Quote:
|
Originally Posted by jhutch
If you go to my website, www.nflspot.com/draft you will see that content is now on the homepage. It shows a catagory, htne the pages that are in that catagory. If you click on one of them, there is a big blank space before the article actually starts. I think that is where the header is supposed to go, but I didnt want/have a header. Is there a way to make either that open space go away, or make it to where you dont have to put a header?
|
The spacing your referring to is located in the site root/modules/Content folder on your webserver. In order to get rid of the 4 spaces you'll need to:
- open up the file index.php from the folder site root/modules/Content
- find
Code:
echo "<font class=\"title\">$mypage[title]</font>
"
."<font class=\"content\">$mypage[subtitle]
";
- change to:
Code:
echo "<font class=\"title\">$mypage[title]</font>
"
."<font class=\"content\">$mypage[subtitle]
";
- save and close file
- upload to web server.
You should now have half the amount of spaces between the subtitle and header text on all pages within your Content module.
If you still don't like the spacing, simply remove or add
.
***Be sure to back up files before editing***