I Am Confused »  Show posts from    to     

Icy Phoenix


Old Styles Topics - I Am Confused



Jogge [ Sun 16 Aug, 2009 20:53 ]
Post subject: I Am Confused
Can someone tell me what i shall do with this.

The border end to soon

This happend when i minimize and maximize on the chatside

Thanks

Jogge

images2


gearhead [ Sun 16 Aug, 2009 20:57 ]
Post subject: Re: I Am Confused
You will have to put a wrap attribute in the .css

To find out exactly, Limun and Lopalong are the best and you should PM them to find the exact wrapper syntax.



Lopalong [ Mon 17 Aug, 2009 07:51 ]
Post subject: Re: I Am Confused
No need for pm's, and I'm off the air for pm's anyway.

@jogge, looks like a lot of wasted white space - I will have quick look, but may need the full theme to see what's actually happening.

Stand by!


Jogge [ Mon 17 Aug, 2009 08:42 ]
Post subject: Re: I Am Confused
Lopalong wrote: [View Post]


@jogge, looks like a lot of wasted white space - I will have quick look, but may need the full theme to see what's actually happening.

Just shout if you nead something, and thanks Lopalong for that you take the time

Jogge


Lopalong [ Mon 17 Aug, 2009 09:51 ]
Post subject: Re: I Am Confused
All of your styles will do that because there are not enough tables or data etc to fill the screen with chat or error messages etc.

That's why we close them off with a bottom border shadow.

Where the white-space starts is where the html stops.

The pic shows what I mean.

jogge

It could be patched for a particular resolution with:

Code: [Hide] [Select]
<div class="leftshadow" style="height:768px"><div class="rightshadow" style="height:768px">


But to cover all resolutions would be difficult to do, but not impossible.


Jogge [ Mon 17 Aug, 2009 10:31 ]
Post subject: Re: I Am Confused
Thanks Lopalong, well have to think what i shall do with this theme then.

Jogge


Lopalong [ Mon 17 Aug, 2009 10:42 ]
Post subject: Re: I Am Confused
This may help with screen size detection. ?

http://www.webmasterworld.com/forum91/2071.htm


Jogge [ Tue 18 Aug, 2009 13:32 ]
Post subject: Re: I Am Confused
Can i make some images or border to end this side with

look at the images a black images or border have been nice.


images1_1250595665_911002

thanks

Jogge


Lopalong [ Wed 19 Aug, 2009 00:09 ]
Post subject: Re: I Am Confused
I'm not looking at the same theme, but this should give you some idea.

This is just a simple change from and including the last table in the footer, so you can just replace the existing bottom piece of script.

If you want images etc to blend in with the corner shadows, then that's something else.

Code: [Hide] [Select]
</table>
<br />
<div style="background-color:#7d0201; width:100%; height:10px;">&nbsp;</div>
</div></div></div>
<span><a name="bottom"></a></span>
</div>

</body>
</html>


BTW, I can't really check it against the whole theme, so what it does there is just a guess.

untitled_3_1250633211_126905


Jogge [ Wed 19 Aug, 2009 00:52 ]
Post subject: Re: I Am Confused
Thanks Lopalong for that you take the time with me

It works but i have the border on every pages

So a images have been better

I have test with some other code so that i have a images there.
But i am a loser on coding so i don´t now how to make this images to fit in
and i don´t whant to us the sitelogo_small. images to this

Well i have make a test and i think i shall go on and testing

Spoiler: [ Show ]


Jogge


Lopalong [ Wed 19 Aug, 2009 01:21 ]
Post subject: Re: I Am Confused
Then try this.

Code: [Hide] [Select]
</table>
<br />

</div></div></div>
<span><a name="bottom"></a></span>
<div style="background-color:#7d0201; width:100%; height:10px;">&nbsp;</div>
</div>

</body>
</html>


Make some corner and bottom centre graphics, split the div style into three div's to handle left, center and right images, and add the markup to the .css

The only way that I can see to have a "bottom" for any particular page and not the whole style, is to add a php "location" argument. But that would need to be done for all "Short" locations and error messages etc. And THAT brother! is too messy.

If you get stuck, make the theme available for me.


Jogge [ Wed 19 Aug, 2009 01:26 ]
Post subject: Re: I Am Confused
Thanks Lopalong,

I shall try that tomorrow, think it´s time for bed here now 01.25




Jogge


Lopalong [ Wed 19 Aug, 2009 01:51 ]
Post subject: Re: I Am Confused
Make sure you get plenty of sleep - You've only got about 140 styles left to go.


spydie [ Wed 19 Aug, 2009 01:59 ]
Post subject: Re: I Am Confused
I think i saw a message from him , saying that he isn´t going to convert them all.


Lopalong [ Wed 19 Aug, 2009 04:05 ]
Post subject: Re: I Am Confused
I must have missed that one.

Edit:

OK jogge, I got tired of playing with divs, but here is one way to do it.

Copy the .css to the style .css.

Overwrite the footer script from {IMG_TBR} to the bottom.

Use the images in the .zip.

CSS.

Code: [Hide] [Select]
.bot-left-shadow {
background: url('images/p_white/shadow_bot_left.gif') no-repeat;
width:18px;
height:18px;
}

.bot-right-shadow {
background: url('images/p_white/shadow_bot_right.gif') no-repeat;
width:18px;
height:18px;
}

.bot-c-shadow {
background: url('images/p_white/shadow_bot_c.gif') repeat-x;
height:18px;
}



FOOTER:

Code: [Hide] [Select]
{IMG_TBR}

</td>
</tr>
</table>
</div>
</div>
</td>
</tr>
</table>
<br />

{PAGE_END}

{BOTTOM_HTML_BLOCK}
<span><a name="bottom"></a></span>
<!-- IF not S_BOT -->{RUN_CRON_TASK}<!-- ENDIF -->
<table style="width:100%; height:18px;" cellpadding="0" cellspacing="0">
<tr>
<td width="18" class="bot-left-shadow"></td>
<td class="bot-c-shadow">
<td width="18" class="bot-right-shadow"></td>
</tr>
</table>
<br />
</div>

{GOOGLE_ANALYTICS}
</body>
</html>


You may want change the images, but the pic shows you what it will look like with the quick ones I did.

untitled_11


Jogge [ Wed 19 Aug, 2009 12:27 ]
Post subject: Re: I Am Confused
Lopalong, works great

Think i have do make some more images then

Jogge


Lopalong [ Wed 19 Aug, 2009 13:19 ]
Post subject: Re: I Am Confused
You're welcome.

I haven't seen anybody work as hard as you in creating themes for IP, apart from MG!

So don't burn yourself out by spending a whole lot of time trying to figure out Icy Phoenix styles. If I and others can't help with specific problems that you need help with to be resolved, PM MG - I'm sure he wont let you down.

And yes, any of your styles that you have applied shadows / borders to will probably have to be re-visited to close them off at the bottom. But you can use the same markup, just change the height's and width's etc.

But I think you know all that!



Mighty Gorgon [ Thu 27 Aug, 2009 21:41 ]
Post subject: Re: I Am Confused
Lopalong wrote: [View Post]
So don't burn yourself out by spending a whole lot of time trying to figure out Icy Phoenix styles. If I and others can't help with specific problems that you need help with to be resolved, PM MG - I'm sure he wont let you down.

No I won't... I always help users who put so many efforts in sharing their work.




Powered by Icy Phoenix