PhotoPost Photo Gallery Sales PhotoPost Sales Toll Free Phone Number
Mon-Fri 9am-4pm EST
  PhotoPost Photo Sharing Photo Gallery    Visualize community tm
| | | | | | | | |

Go Back   PhotoPost Community > PhotoPost Support > PhotoPost Pro Support Forums > Photopost Pro How Do I...?

Photopost Pro How Do I...? Wondering how to do things in PhotoPost?

Reply
 
LinkBack Thread Tools Rate Thread Display Modes
Old February 8th, 2005, 02:04 AM   #1 (permalink)
Registered User
 
Join Date: Jul 2002
Posts: 1,221
Header Question

In my headtags.html, I have

<html>
<head>
<title>Site</title>

but I have no idea where this is being pulled from since I do not use the vb Integration (other than registration):

================================
<script type="text/javascript">
var PopUpHelpX = (screen.width/2)-150;
var PopUpHelpY = (screen.height/2)-200;
var pos = "left="+PopUpHelpX+",top="+PopUpHelpY;
function PopUpHelp(url){
PopUpHelpWindow = window.open("http://photos.com/"+url,"Smilies","scrollbars=yes,width=300,height=400,"+pos);
}
</script>


<link rel="stylesheet" href="http://photos,cin/stylesheets/default.css" type="text/css" />
</head>
<body>
=====================

Then my header.html begins. My problem is that I need a different body tag than the one that is automatically inserted...

Last edited by Steve_C; February 8th, 2005 at 10:47 AM.
Steve_C is offline   Reply With Quote
Old February 8th, 2005, 10:25 AM   #2 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 66,788
<html>
<head>
<title>Site</title>

That doesnt get put in a headtags file

You would have to link your header and headtag files here for me to see so I can give you a suggestion but as far as body tags you technically can not have multiple instances and be valid html
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is offline   Reply With Quote
Old February 8th, 2005, 10:44 AM   #3 (permalink)
Registered User
 
Join Date: Jul 2002
Posts: 1,221
You got mail.
Steve_C is offline   Reply With Quote
Old February 8th, 2005, 11:24 AM   #4 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 66,788
Okay those files look fine so what is the specific question here?

Here is your page source below. In fact everything looks fine except you need to remove the body tag out of your headtags.htm file. If you want to define the body tag you need to edit your css file for the body tag and place this in there

margin: 0px 0px 0px 0px;

if you want no margin. CSS files would be the best way to customize the body tag also per category

Code:
Content visible to verified customers only.
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is offline   Reply With Quote
Old February 8th, 2005, 11:33 AM   #5 (permalink)
Registered User
 
Join Date: Jul 2002
Posts: 1,221
It's putting in that <body> tag automatically. I need my body tag to be different, <body topmargin="0">.
Steve_C is offline   Reply With Quote
Old February 8th, 2005, 11:39 AM   #6 (permalink)
PhotoPost Developer
Verified Customer
 
Join Date: Jan 2002
Posts: 11,858
You should modify your css to use topmargin as part of the body def and not the <body> tag.
__________________
Please do not PM me for support or sales questions. Thank you for your understanding.
Michael P is offline   Reply With Quote
Old February 8th, 2005, 11:46 AM   #7 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 66,788
I beleive I gave you this to put in your css body tag for no margin to be there

margin: 0px 0px 0px 0px;
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is offline   Reply With Quote
Old February 8th, 2005, 11:53 AM   #8 (permalink)
Registered User
 
Join Date: Jul 2002
Posts: 1,221
ahh... I keep forgetting about that file here. ok. Fixed. Now, can anyone tell me why the header is not letting my flash banner load? It works fine by itself, but with PP, it does not load:

http://photos.sirstevesguide.com/sho...y.php?cat=1911 (not working)

http://photos.sirstevesguide.com/hea...05/468x60.html (works)
Steve_C is offline   Reply With Quote
Old February 8th, 2005, 01:32 PM   #9 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 66,788
How about the relative url? Make it a full url to the file in the embed tag. The reason it works in your header link the file one cause the file exists there. 468x60.swf does not exist in the photopost directory

<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="468" height="60" id="468x60" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="468x60.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
<embed src="468x60.swf" quality="high" bgcolor="#ffffff" width="468" height="60" name="468x60" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is offline   Reply With Quote
Old February 8th, 2005, 01:48 PM   #10 (permalink)
Registered User
 
Join Date: Jul 2002
Posts: 1,221
I think you caught it when I was trying some things but yes, you are correct. I came back to post I figured it out and you already replied.

BTW - I didn't even notice this How Do I? Category. How about one specifically for PhotoPost Pro questions?
Steve_C is offline   Reply With Quote
Old December 3rd, 2008, 06:12 AM   #11 (permalink)
Member
Verified Customer
 
Join Date: Aug 2008
Posts: 98
Question title tag help

Quote:
Originally Posted by Chuck S View Post
Okay those files look fine so what is the specific question here?

Here is your page source below. In fact everything looks fine except you need to remove the body tag out of your headtags.htm file. If you want to define the body tag you need to edit your css file for the body tag and place this in there

margin: 0px 0px 0px 0px;

if you want no margin. CSS files would be the best way to customize the body tag also per category

Code:
Content visible to verified customers only.
Hi how do i change the title tag Photo Gallery - Main Index
__________________

I am using

vBulletin 3.8.7
vBGallery 2.5.1

testing vbulletin 4.1.5
and vbgallery v3.0.1
appsfinder is offline   Reply With Quote
Old December 3rd, 2008, 11:45 AM   #12 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 66,788
You change your site name at to of admin global options as far as Main Index thats the phrase for the index itself to change that name you edit the english.php language file in the languages folder.
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Header question... digidivakathy Photopost Pro How Do I...? 5 March 1st, 2007 06:43 AM
header question smackLAN Installs and Upgrade - vBulletin 3.0.X 1 July 1st, 2005 09:57 AM
question re header-inc.php and install.php Carolem Photopost Pro Installation & Upgrades 1 June 8th, 2005 06:24 AM
5.02 - Upgrade Error Question/Deleted Files Question WB Photopost Pro Installation & Upgrades 5 March 16th, 2005 04:00 PM
Header and Footer question omeganostral Photopost Pro Installation & Upgrades 1 October 6th, 2004 06:19 PM


All times are GMT -5. The time now is 08:47 AM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0