different window

liunx

Guest
i was wondering how i could i have a page open up in a different window:confused: also i have a counter on ym web page and i was wondering how i could have that centered at the bottom of the page. go to <!-- m --><a class="postlink" href="http://www.dmkclan.com">http://www.dmkclan.com</a><!-- m --> and on the home page there is a green counter well i want that at the bottom. you know all the stuff on top then all the space and it is centered at the bottom of the page.<!--content-->Opening a new window:<br />
<!-- m --><a class="postlink" href="http://www.webdevfaqs.com/javascript.php#popup">http://www.webdevfaqs.com/javascript.php#popup</a><!-- m --><br />
<br />
If the rest of your content will never reach the bottom of the page then put your counter inside this code:<br />
<br />
<div style="position: absolute; bottom: 0;"><br />
<!-- counter --><br />
</div><br />
<br />
Other than that you've set yourself a pretty problem...<!--content-->To open up a page in a new instance of your browser, use the target parameter of the anchor (<a>) HTML element.<br />
<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"page.html" target="_blank">Click me</a><br />
<br />
<br />
_blank will inform the browser that the preceding link will be opened in a new window.<br />
<br />
Regards,<br />
Andrew Buntine.<!--content-->thank you very much guys<!--content-->
 
Back
Top