PhotoPost Community

PhotoPost Community (http://www.photopost.com/forum/)
-   ReviewPost Installation & Upgrades (http://www.photopost.com/forum/reviewpost-installation-upgrades/)
-   -   Getting the Font to mach the rest of my site!!! (http://www.photopost.com/forum/reviewpost-installation-upgrades/108136-getting-font-mach-rest-my-site.html)

xrayhead May 17th, 2004 02:28 PM

Getting the Font to mach the rest of my site!!!
 
1 Attachment(s)
Hi

Anyone know how I can change the font in the Review to match the rest of my site?

IE, when someone creates a new review it has standard Times Roman font but when people reply to the new review the font matches the rest of my site!!!

This looks really unprofessional and I would love to change it.

Thanks

Xrayhead
:)

xrayhead May 17th, 2004 02:30 PM

Sorry the above post is incorrect. The font I want to change is the one circled in red as it dose not match the font of my site and the review.

Xrayhead
:o

xrayhead May 20th, 2004 02:19 PM

PLEASE..........

Someone MUST be able to help me with this!!!!

Support !! Anyone there ?


Xrayhead

Chuck S May 20th, 2004 02:41 PM

Simple CSS

Alter your CSS stylesheet to use the font in photopost the same font you use on your site. The specific class there is either tddetails or alternatetable. However they only use a color definition. Therefore the font size etc is pulled from the onbody tag. The onbody tag does not have a specific font specified therefore the specific font used throughout most of the classes that do not have specific fonts used fall back to the body tag

BODY,P,TABLE,TD,TR {
font-size: 9pt;
color: #000000;
font-family: Verdana, Helvetica, sans-serif;
}

Hense you see the font-family used. If your simply trying to change the font size you can place a font size variable in both tddetails and alternatetable or change the onbody font size.

xrayhead May 20th, 2004 05:17 PM

OK, well thank you for the help.



Lee

xrayhead June 2nd, 2004 08:58 AM

I still can’t get this to work.

This is the font I want to use

<font face="Verdana, Arial, Helvetica, sans-serif" size="1">FONT </font>

I tried changing all the style sheets but it makes no difference.

Any ideas?

Lee

PS, I also just did a find and replace to ALL fonts down to 6pt and the font in the reply main window SILL did not change!!
Is the reviews software pulling the font from somewhere else?
:(

xrayhead July 2nd, 2004 08:17 AM

This still has not been resolved!!! :(

Can somone please give me some help on this one.
Have a look at the site and you will see what I mean.
http://www.walkonzone.com/reviews

If possible can you please mail me admin@walkonzone.com


Thanks

Xrayhead

Michael P July 2nd, 2004 09:14 AM

If you simply looked at the html for the page and checked the style tag surrounding your text, you'd quickly see that style tag being used. Since this can be different for each integration, you'll need to check it for yours.

xrayhead July 2nd, 2004 07:01 PM

Quote:

Originally Posted by Michael P
If you simply looked at the html for the page and checked the style tag surrounding your text, you'd quickly see that style tag being used. Since this can be different for each integration, you'll need to check it for yours.

If I was simply a web developer I would have not asked the question!
I am a voice programmer by trade (meridian PBX and Unix stuff) so you will have to bare with me please.

Ok, There are 3 in the stylesheets DIR.
I have tried changing all of these, and still no changes.

Lee

PS. Is this post in a public area of the forum or members only?

Chuck S July 2nd, 2004 07:10 PM

Your missing the point though XRAY

All we can do is point you in the right direction.

In a normal Photopost Integration what I said would work since that cell uses the medium and tddetail classes both of which do not specify an actual font type. The font type defaults to the body font type which is what I posted.

However if your using 4.8 and using some sort of style integration this can be different and will coincide with your specific tag that it uses in each style type. As Michael posted only you are going to know this. You can look right at the source of your page and find the span tag that surrounds the comment.

xrayhead July 5th, 2004 06:03 AM

Quote:

Originally Posted by omegatron
Your missing the point though XRAY

All we can do is point you in the right direction.

In a normal Photopost Integration what I said would work since that cell uses the medium and tddetail classes both of which do not specify an actual font type. The font type defaults to the body font type which is what I posted.

However if your using 4.8 and using some sort of style integration this can be different and will coincide with your specific tag that it uses in each style type. As Michael posted only you are going to know this. You can look right at the source of your page and find the span tag that surrounds the comment.

OK, Thanks for the reply....

I think I will have to get some help with this one as not a lot of what you just said makes sence :(

I will let you know how I get on.

Xray

Chuck S July 5th, 2004 09:14 AM

Well everyone has been telling you to look at your source code of the page.

Your using VB2 so there is no style integration with your board so my answer is as I posted 6 weeks ago. Since your using reviewpost stylesheets the comments use the medium class which does not have a font class statement only a size which means it falls back on the body class.

This is what is in the stylesheet for the medium tag which is same family type you want.

.medium {
font-size: 10pt;
font-family: Verdana, Helvetica, sans-serif;
}

Why not simple edit the showproduct.tmpl and edit line the line that is like this


<font class="medium"><br /></font>

to this

<font class="small"><br /></font>


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

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


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97