Mikec247
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Coraline theme problem with iPadAndrew,
That didn’t work but I see where you are going with it. I went back an examined the original CSS file that came with the theme and it in fact works fine on the iPad and phone. It resizes with the screen. The big change I made to the style sheet is I wanted to make the header a fixed position header so the content would scroll under the header leaving it always in place at the top of the page. Here is the two code comparions (I have tried everything and can’t figure out what to change):
Fixed header code:
#header {
position: fixed;
top: 0;
background: rgb(255, 255, 255); /* The Fallback */
background: rgba(255, 255, 255, 1);
z-index: 10;
height: 148px;
width: 990px;
}
#content-box {
padding: 130px 0 0 0;
}
#masthead {
padding: 20px 0 0 0;
}Original header code:
#header {
margin: 0 0 28px;
}
#masthead {
padding: 28px 0 0 0;
}Any suggestions?
Thanks
MCForum: Themes and Templates
In reply to: Coraline theme problem with iPadThanks for your help. Ill give that a shot and see what happens. Ill let you how it works out.
Forum: Themes and Templates
In reply to: Coraline theme problem with iPadWhen you look at the site on an iPhone or an iPad it’s not sizing to fit the browser. It looks like it is cutting off the right side of the page.