j-mar
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Can’t get Wrapper borderHad a buddy get me fixed up. Had to do with floats that didn’t need to be there and were canceling things out.
Forum: Themes and Templates
In reply to: Can’t get Wrapper borderI’m slowly getting it. Built webpages with HTML for a long time but just now trying to grasp CSS.
So basically the wrapper div is still getting turned off somewhere too early? I keep trying and trying and can’t find the problem.
Forum: Themes and Templates
In reply to: Can’t get Wrapper borderThanks for taking the time to help.
All of those errors were related to some code I put in a Text widget. Removed that and all the errors went away.
I’m still not sure how to get the wrapper border. Installed Firebug, neat tool. I see how it’s showing Wrapper just the small part at top. But I don’t see the wrapper closing up until after the footer. I guess I’m missing it.
Forum: Themes and Templates
In reply to: Can’t get Wrapper borderHmm, I’m still not seeing that.
Here’s what the end of my header file looks like:
<div id="wrapper"> <div id="header"> <div id="mast"> </div> <?php if (function_exists('pixopoint_menu')) {pixopoint_menu();}; ?> </div>And then here’s start of index.php
<?php get_header(); ?> <div id="featured"> <ul class="ui-tabs-nav"> <li class="ui-tabs-nav-item ui-tabs-selected" id="nav-fragment-1"><a href="#fragment-1"><img src="images/fc01.gif" alt="" /><span>New Album: Buffet Hotel Available For Pre-Order</span></a></li> <li class="ui-tabs-nav-item" id="nav-fragment-2"><a href="#fragment-2"><img src="images/fc02.gif" alt="" /><span>Summerzcool Tour Ends in New York</span></a></li> <li class="ui-tabs-nav-item" id="nav-fragment-3"><a href="#fragment-3"><img src="images/fc03.gif" alt="" /><span>Bill Clinton Visits Margaritaville</span></a></li> <li class="ui-tabs-nav-item" id="nav-fragment-4"><a href="#fragment-4"><img src="images/fc04.gif" alt="" /><span>Buffett Sings National Anthem</span></a></li> </ul> <!-- First Content --> <div id="fragment-1" class="ui-tabs-panel" style=""> <img src="images/fc01.jpg" alt="" /> <div class="info"> <h2><a href="#">New Album: Buffet Hotel</a></h2> <p>The new Jimmy Buffett album "Buffet Hotel" is available for pre-order from Amazon.com... <a href="#"><strong>Read More</strong></a></p> </div> </div> <!-- Second Content -->So I’m not seeing where the wrapper got closed. What am I missing?