 | |  | | | Photopost Pro Installation & Upgrades If you're having install or upgrade problems |
October 10th, 2004, 08:53 PM
|
#21 (permalink)
| | Member Verified Customer
Join Date: Aug 2002 Location: NY
Posts: 415
| Quote: |
Originally Posted by omegatron well I dont see images left aligned but try this. Problem I see now are all those margina around the tables.
if ( $Globals['forumstyle'] == "yes" ) {
$Style['onbody'] = "onbody";
$Style['tableborders'] = "bg1";
$Style['tablesurround'] = "borderwrap";
$Style['tddetails'] = "row1";
$Style['tdbackground'] = "darkrow3";
$Style['tdnothumbs'] = "maintitle";
$Style['menubar'] = "maintitle";
$Style['menubarnb'] = "";
$Style['catcolumn'] = "row1";
$Style['photocol'] = "row2";
$Style['commentscol'] = "row2";
$Style['lastphocol'] = "row2";
$Style['lastcommcol'] = "row1";
$Style['small'] = "desc";
$Style['medium'] = "normalname";
$Style['large'] = "font-size: 14pt;";
$Style['welcome'] = "desc";
$Style['lighttable'] = "row1";
$Style['alternatetable'] = "row2";
$Style['formboxes'] = "input";
$Style['blockquote'] = "postcolor";
}
The problem with there style is all the darn paddings and margins etc which makes it hard to match anything | There is something in the code that is breaking the thumbnails on the gallery index. My thumbnails are set to 100x100, and the thumbstack template is broken. But, to see the left aligned images, click one of the thumbnails and look at the medium size image.
If it would help, I could set up a test forum so we could get this right and hopefully help other Invision users.
|
| |
October 10th, 2004, 08:56 PM
|
#22 (permalink)
| | Member Verified Customer
Join Date: Aug 2002 Location: NY
Posts: 415
| Quote: |
Originally Posted by omegatron The problem with there style is all the darn paddings and margins etc which makes it hard to match anything | Exactly. The classed have changed so much my head is spinning
|
| |
October 11th, 2004, 02:16 AM
|
#23 (permalink)
| | Photopost Developer Verified Customer
Join Date: Jun 2002 Location: Abingdon,MD
Posts: 71,699
| Quote: |
Originally Posted by Smoothie They posted over at IPB that when final 2.0 was released that the css would change. I'm not sure which build you have, but I use version I use, 2.0.1.
I made the changes you requested. It still looks bad. I appreciate your help. | Right but these CSS changes must be in 2.0.1  They where not present in 2.0
I lack any way to test this on my end as I do not own the product so all I can do is suggest changes to yours.
|
| |
October 11th, 2004, 02:38 AM
|
#24 (permalink)
| | Photopost Developer Verified Customer
Join Date: Jun 2002 Location: Abingdon,MD
Posts: 71,699
|
Actually your style looks good with the exception of finding that darn padding around the tables.
The aligning everything to the left is your own doing as we never call the ibwrapper which does so but you have
#ipbwrapper{
margin: 20px auto 20px auto; /* centers the box, no matter the overall width, also applies a 20px gap at the top and bottom of the board */
text-align: left; /* re_aligns text to left second part of two part MSIE centering workaround */
/* EDIT THIS TO CHANGE THE WIDTH OF THE BOARD -> 750px is a common fixed resolution size */
width: 98%;
}
I adjusted your template a little to compensate
|
| |
October 11th, 2004, 03:02 AM
|
#25 (permalink)
| | Photopost Developer Verified Customer
Join Date: Jun 2002 Location: Abingdon,MD
Posts: 71,699
|
This is probally the best one I can come up with try this one. The ibp2 style classes are something everything has margins and padding
if ( $Globals['forumstyle'] == "yes" ) {
$Style['onbody'] = "onbody";
$Style['tableborders'] = "";
$Style['tablesurround'] = "";
$Style['tddetails'] = "row1";
$Style['tdbackground'] = "darkrow3";
$Style['tdnothumbs'] = "maintitle";
$Style['menubar'] = "maintitle";
$Style['menubarnb'] = "";
$Style['catcolumn'] = "row1";
$Style['photocol'] = "row2";
$Style['commentscol'] = "row2";
$Style['lastphocol'] = "row2";
$Style['lastcommcol'] = "row1";
$Style['small'] = "desc";
$Style['medium'] = "normalname";
$Style['large'] = "font-size: 14pt;";
$Style['welcome'] = "desc";
$Style['lighttable'] = "row1";
$Style['alternatetable'] = "row2";
$Style['formboxes'] = "input";
$Style['blockquote'] = "postcolor";
}
although try this line like this once
$Style['tableborders'] = "borderwrap";
|
| |
October 11th, 2004, 03:58 AM
|
#26 (permalink)
| | Photopost Developer Verified Customer
Join Date: Jun 2002 Location: Abingdon,MD
Posts: 71,699
|
Here is an updated ib2.php and adm-inc.php files. Rename from txt to php
You can try the one class experiment I posted above in regards to the tableborders
|
| |
October 11th, 2004, 10:02 AM
|
#27 (permalink)
| | Member Verified Customer
Join Date: Aug 2002 Location: NY
Posts: 415
| Quote: |
Originally Posted by omegatron Right but these CSS changes must be in 2.0.1  They where not present in 2.0
I lack any way to test this on my end as I do not own the product so all I can do is suggest changes to yours. | IPB 2 final was released to the general public on Sep 21 2004, 01:02 PM. Is that the one you have?, IPB 2.0.1 was a security update. No css changes.
|
| |
October 11th, 2004, 10:23 AM
|
#28 (permalink)
| | Member Verified Customer
Join Date: Aug 2002 Location: NY
Posts: 415
| Quote: |
Originally Posted by omegatron Here is an updated ib2.php and adm-inc.php files. Rename from txt to php
You can try the one class experiment I posted above in regards to the tableborders | Hi Chuck,
I think you forgot to change this in your updated ipb2.php: Quote:
Edit your ib2.php file and change line 372
if ( $fstyle == "" ) {
to
if ( $fstyle == "" || $fstyle == 0 ) {
| |
| |
October 11th, 2004, 10:32 AM
|
#29 (permalink)
| | Member Verified Customer
Join Date: Aug 2002 Location: NY
Posts: 415
| Quote: |
Originally Posted by omegatron Actually your style looks good with the exception of finding that darn padding around the tables.
The aligning everything to the left is your own doing as we never call the ibwrapper which does so but you have
#ipbwrapper{
margin: 20px auto 20px auto; /* centers the box, no matter the overall width, also applies a 20px gap at the top and bottom of the board */
text-align: left; /* re_aligns text to left second part of two part MSIE centering workaround */
/* EDIT THIS TO CHANGE THE WIDTH OF THE BOARD -> 750px is a common fixed resolution size */
width: 98%;
}
I adjusted your template a little to compensate | Because of this ipbwrapper, my thumbstack template can't be used? I mean we are using it now, and I assume thats the template you edited. But, the ipbwrapper has always had that text-align: left; in it.
|
| |
October 11th, 2004, 10:33 AM
|
#30 (permalink)
| | Member Verified Customer
Join Date: Aug 2002 Location: NY
Posts: 415
| Quote: |
Originally Posted by omegatron although try this line like this once
$Style['tableborders'] = "borderwrap"; | That works!
|
| |
October 11th, 2004, 10:52 AM
|
#31 (permalink)
| | Member Verified Customer
Join Date: Aug 2002 Location: NY
Posts: 415
|
Hi,
can you tell me which class controls this part of PP? It seems to be a problem
|
| |
October 11th, 2004, 12:06 PM
|
#32 (permalink)
| | Photopost Developer Verified Customer
Join Date: Jun 2002 Location: Abingdon,MD
Posts: 71,699
|
Well 2.0.1 had to have these CSS changes as we have user's who run and have upgraded to 2.0 and things are fine CSS wise.
You are the only one reporting this and your running 2.0.1 and our CSS integration was written on 2.0 CSS tags
Now from what I see this is the final changes that should be in those files and they are linked below
As far as using the ibpwrapper variable we don't use that class so if it causes everything to align to the left you may want to consider just using a <div width="98%" align="center"> tag. If you remove that css tag I think you will see your thumbs appear fine.
|
| |
October 11th, 2004, 12:19 PM
|
#33 (permalink)
| | Member Verified Customer
Join Date: Aug 2002 Location: NY
Posts: 415
|
Thanks Chuck. Here is what I have in my header.htm file, What should I change? Code: Content visible to verified customers only.
|
| |
October 11th, 2004, 12:28 PM
|
#34 (permalink)
| | Photopost Developer Verified Customer
Join Date: Jun 2002 Location: Abingdon,MD
Posts: 71,699
|
<div id="ipbwrapper">
could be this
<div width="98%" align="center">
|
| |
October 11th, 2004, 02:29 PM
|
#35 (permalink)
| | Member Verified Customer
Join Date: Aug 2002 Location: NY
Posts: 415
| Quote: |
Originally Posted by omegatron <div id="ipbwrapper">
could be this
<div width="98%" align="center"> | Tried that, and it didn't work. There was no margins on either side of the header What I did use was this:
<div style="margin: 20px auto 20px auto; width: 98%;">
Which seem to work, except the darn logo was centered instead of where it should be. |
| |
October 11th, 2004, 02:30 PM
|
#36 (permalink)
| | Member Verified Customer
Join Date: Aug 2002 Location: NY
Posts: 415
| Quote: |
Originally Posted by Smoothie Hi,
can you tell me which class controls this part of PP? It seems to be a problem | I'm not sure why this part of the gallery looks so awful. I tried adjusting this class $Style['menubarnb'] = ""; but couldn't get it right.
|
| |
October 11th, 2004, 02:48 PM
|
#37 (permalink)
| | Photopost Developer Verified Customer
Join Date: Jun 2002 Location: Abingdon,MD
Posts: 71,699
|
I dont know why you mean awful it looks normal to me.
As far as your logo just put an align="left: in your img tag in the header html
Make sure you have uploaded all the proper templates just in case.
Menubarb is not defined anylonger except in Photopost internal installs as it causes terrible gradient stacking since you were calling the same gradients twice. Thats why menubarb is empty and should stay that way.
|
| |
October 11th, 2004, 05:12 PM
|
#38 (permalink)
| | Member Verified Customer
Join Date: Aug 2002 Location: NY
Posts: 415
| Quote: |
Originally Posted by omegatron I dont know why you mean awful it looks normal to me.
As far as your logo just put an align="left: in your img tag in the header html
Make sure you have uploaded all the proper templates just in case.
Menubarb is not defined anylonger except in Photopost internal installs as it causes terrible gradient stacking since you were calling the same gradients twice. Thats why menubarb is empty and should stay that way. | I'm sorry, poor poor wording. The height of that part looks out of proportion and the text is too far at the bottom. Here is a screen shot when logged out. Can you tell me where I need to look to remove this?
|
| |
October 11th, 2004, 08:50 PM
|
#39 (permalink)
| | Photopost Developer Verified Customer
Join Date: Jun 2002 Location: Abingdon,MD
Posts: 71,699
|
well you can try the templates I did for a user here in this thread and see if they make any difference Style issues... |
| | |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | | | | Thread Tools | | | | Display Modes | Rate This Thread | Linear Mode | |
Posting Rules
| You may not post new threads You may not post replies You may not post attachments You may not edit your posts HTML code is Off | | | All times are GMT -5. The time now is 12:32 AM. | |