all of my page on my websites are all equally aligned, except one page 'films' how do i align it equally with all the rest?
www.neliosam.com
thank you
Alignment
Re: Alignment
That page triggers scrollbars, which will make everything appear to shift. In your main css, try adding:
This will keep the vertical scrollbar there, just dimming it when it's not needed rather than removing it.
Code: Select all
html {
height: 100%;
overflow-y: scroll;
}
Not getting the answer you need? CMSMS support options
Re: Alignment
Code: Select all
html {
height: 101%;
overflow-y: scroll;
}
Also, using {margin:0 auto} will make block level elements centered (vs using text-align:center)
"The art of life lies in a constant readjustment to our surroundings." -Okakura Kakuzo
--
LinkedIn profile
--
I only speak/write in English so I may not translate well on International posts.
--
--
LinkedIn profile
--
I only speak/write in English so I may not translate well on International posts.
--
Re: Alignment
where do i begin to change it, do i copy and paste it on html code but where do i paste it?
which section within CSS (is it in the 'Template' or on the 'pages' section?) and where do i paste it next to in the html, i have no cue, im new to this program ...
which section within CSS (is it in the 'Template' or on the 'pages' section?) and where do i paste it next to in the html, i have no cue, im new to this program ...
Re: Alignment
It's nothing to do with "this program", it's basic CSS. Add it to the top of your main stylesheet.
Not getting the answer you need? CMSMS support options