PDA

View Full Version : What if I want two Title Images?


inspiration100
11-14-2008, 03:34 AM
I want to have two title images. One on the left side of the page and one on the right side of the page. Where do I add the second title image? What code would I use and in what template?

Thanks so much!!

SEOvB
11-14-2008, 03:44 AM
Do you mean the board logo or in the header?

In the header template you'll see a place for ad_location header logo or whatever, just put something in that template.

inspiration100
11-14-2008, 03:47 AM
Thanks FRDS. That worked!
Now one last question.
http://seattlems.com/ - How can I get rid of the left and right pxls in the header (on the left and right side). On the far left in the header there is alot of pixels and on the right fewer but still enough. Any suggestions?

SEOvB
11-14-2008, 04:21 AM
try adding

style="padding: 0px; margin: 0px;" to your image tags

ex:
<img src="header.gif" style="padding: 0px; margin: 0px;">

CodingMonkey
11-14-2008, 07:54 AM
This would be a design flaw with you're website. You currently have this within your CSS:
body
{
background: #FFFFFF url(images/AHQ/misc/bg.gif) repeat-x;
color: #000000;
font: 10pt verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
margin: 5px 10px 0px 10px;
padding: 0px;
<img src="http://forums.digitalpoint.com/images/misc/dps_logo.gif">
}

One, don't see why that img tag is in the css..., and two... the margins are the only thing blocking you from getting you what you want.
But this will also remove the pixels on the forum - you may want a div tag with a style 'command' to fix that. (eg: "<div style='margins: 5px 10px 5px 10px'>")