WebsiteBaker 2.13.8 is now available!
R.I.P Dietmar (luisehahne) and thank you for all your valuable work for WBhttps://forum.websitebaker.org/index.php/topic,32355.0.html
and little off topic:If I have two blocks: Left and right, (left is main, right is side bar) which target (like _blank for new window) or whatever I must define that when I click on link in right block, new content opens in it, and not in main (left) block ? or if I click on link in Left block to open page in right and reverse..?cheers
Guys, I will post it as soon as I get home Also I want to try some design adjustments cheers
Quote from: crnogorac081 on October 23, 2009, 12:34:56 PMGuys, I will post it as soon as I get home Also I want to try some design adjustments cheersHello Ivan,you didn't post your trick till now, right?Could you explain how you did include all the boxes in top?Kind Regards,Stefek
<link href="<?php echo TEMPLATE_DIR; ?>/account-htt/css/slide.css" rel="stylesheet" type="text/css" media="screen" />AND ALSO<script src="<?php echo TEMPLATE_DIR; ?>/account-htt/js/slide.js" type="text/javascript"></script>
<!-- Panel --><div id="toppanel"> <div id="panel"> <div class="content clearfix"> <?php if(FRONTEND_LOGIN AND !$wb->is_authenticated()) { ?> <div class="left"> <h1>Welcome to this Web-site</h1> <h2>This is great site..</h2> <p class="grey">Next step is to drop text from from global block!</p> <h2>This is Header</h2> <p class="grey">this is raw design.. but its working :)</p> </div> <div class="left"> <?php include (WB_PATH . '/account/login_form.php'); ?> </div> <div class="left right"> <?php include (WB_PATH . '/account/signup_form.php'); ?> </div> <?php } elseif (FRONTEND_LOGIN AND $wb->is_authenticated()) { include (WB_PATH . '/account/preferences_form.php'); ?> <?php } ?> </div> </div> <!-- /login --> <!-- The tab on top --> <div class="tab"> <ul class="login"> <li class="left"> </li> <li> <?php echo $TEXT['WELCOME_BACK'].' '; if($wb->is_authenticated()) { echo $wb->get_display_name().' | <a href="'.LOGOUT_URL.'">'.$MENU['LOGOUT'].'</a> '; } else{ echo 'Guest'; } ?> </li> <li class="sep">|</li> <li id="toggle"> <?php if($wb->is_authenticated()) { echo '<a id="open" class="open" href="#">'.$MENU['PREFERENCES'].'</a>'; } else{ echo '<a id="open" class="open" href="#">Log In | Register</a>'; } ?> <a id="close" style="display: none;" class="close" href="#">Close Panel</a> </li> <li class="right"> </li> </ul> </div> <!-- / top --> </div> <!--panel -->
Code: [Select]<?php include (WB_PATH . '/account/login_form.php'); ?> </div> <div class="left right"> <?php include (WB_PATH . '/account/signup_form.php'); ?> </div>
<?php include (WB_PATH . '/account/login_form.php'); ?> </div> <div class="left right"> <?php include (WB_PATH . '/account/signup_form.php'); ?> </div>