Text run on over template
-
primelegal
- New Member

- Posts: 6
- Joined: Wed Nov 12, 2008 3:52 pm
Text run on over template
I am using CMS Made Simple 1.4.1 "Spring Garden", Php 5, MySQl 5.0.22 on Windows Server 2003 Web Edition, IIS 6
I am having an issue with pages that have long text in length. I am not sure if the problem is with CMS or my templates. Either way, your suggestions would be appreciated.
The link is here that you can see below:
http://www.primelegal.biz/New/index.php ... eturnid=67
Thanks,
Brian
I am having an issue with pages that have long text in length. I am not sure if the problem is with CMS or my templates. Either way, your suggestions would be appreciated.
The link is here that you can see below:
http://www.primelegal.biz/New/index.php ... eturnid=67
Thanks,
Brian
Re: Text run on over template
Can you post your template (and stylesheet), your page code looks kind of all over the place in my opinion.
-
primelegal
- New Member

- Posts: 6
- Joined: Wed Nov 12, 2008 3:52 pm
Re: Text run on over template
The CSS is attached:
The page code is listed below:
------------------------------------------------------------
{metadata}
{stylesheet}
{menu template='cssmenu.tpl'}
{breadcrumbs}
{content}
{search}
Recent Blog Entries
{global_content name='Blog Entrys'}
{Banners category="side"}
Tech News
{cms_module module='News'}
{global_content name='footer'}
The page code is listed below:
------------------------------------------------------------
{metadata}
{stylesheet}
{menu template='cssmenu.tpl'}
{breadcrumbs}
{content}
{search}
Recent Blog Entries
{global_content name='Blog Entrys'}
{Banners category="side"}
Tech News
{cms_module module='News'}
{global_content name='footer'}
- Attachments
-
[The extension txt has been deactivated and can no longer be displayed.]
Re: Text run on over template
At first glance the template and CSS look ok but when I look at your page's source I see stuff like
<a target='_blank'
etc.
What are you using to work on your pages?
<a target='_blank'
etc.
What are you using to work on your pages?
-
primelegal
- New Member

- Posts: 6
- Joined: Wed Nov 12, 2008 3:52 pm
Re: Text run on over template
I am using Dreamweaver to work on the page.
In IE 6. everything works as it should. IE 7 and FF 3, it doesnt.
In IE 6. everything works as it should. IE 7 and FF 3, it doesnt.
Re: Text run on over template
Change your content div to 100% height, instead of 1200px:
#content{
float:right;
width: 70%;
margin: 0;
padding: 0 3% 0 0;
background-color: #FFFFFF;
border-left-width: 0px;
border-left-style: solid;
height: 100%;
}
Nullig
#content{
float:right;
width: 70%;
margin: 0;
padding: 0 3% 0 0;
background-color: #FFFFFF;
border-left-width: 0px;
border-left-style: solid;
height: 100%;
}
Nullig
-
primelegal
- New Member

- Posts: 6
- Joined: Wed Nov 12, 2008 3:52 pm
Re: Text run on over template
Thanks, that works in all three browsers IE, FF, and Safari. I also had to change the tan color nav bar to 100% also.
Is there any that I can make the navigation vertical bar flush at the bottom where the white meet the red.
Or any tricks that would make it look joined?
Is there any that I can make the navigation vertical bar flush at the bottom where the white meet the red.
Or any tricks that would make it look joined?
Last edited by primelegal on Wed Nov 12, 2008 8:44 pm, edited 1 time in total.
Re: Text run on over template
The best way would be to wrap both your navbar and content divs inside another div with a background color that matches the current navbar background color. Then the navbar background could be transparent and the content remains white. It would give the illusion that the left bar extended the same length as the content.
Nullig
Nullig
-
primelegal
- New Member

- Posts: 6
- Joined: Wed Nov 12, 2008 3:52 pm
Re: Text run on over template
Thanks alot, that did it
