Results 1 to 7 of 7
  1. #1

    Default Building a new site... need help!

    I've got a site theme in mind, and I need some help getting it all together.
    The site I'm building for a friend is http://www.binkyblanky.com
    It's going to sell custom baby blankets...

    Here's what I want it to look like.




    I guess we should start with the purple border around the entire site, and the image at the footer. I'm pretty sure I can figure out everything else...

    Thank you!

  2. #2
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Building a new site... need help!

    Quote Originally Posted by canemasters View Post
    I've got a site theme in mind, and I need some help getting it all together.
    The site I'm building for a friend is http://www.binkyblanky.com
    It's going to sell custom baby blankets...

    Here's what I want it to look like.




    I guess we should start with the purple border around the entire site, and the image at the footer. I'm pretty sure I can figure out everything else...

    Thank you!
    for the border, add the following highlighted portion to this declaration in your stylesheet.css

    #mainWrapper {
    background-color: #ffffff;
    text-align: left;
    width: 900px;
    vertical-align: top;
    border: 3px solid #B28AA5;

    }

    The footer is a bit more complicated and requires adding a declaration to your stylesheet.css and editing includes/templates/YOUR_TEMPLATE/common/tpl_footer.php

    add the following declaration to your stylesheet.css

    #footerWrapper {
    background: url(../images/Your_Image.jpg);
    }

    Now open includes/templates/YOUR_TEMPLATE/common/tpl_footer.php

    find the following line of code

    <!--eof-navigation display -->

    add the following just below
    <div id="footerWrapper">

    Now go all the way to the bottom and immediately after the last

    ?>
    add
    </div>

    save the file and upload to your server

  3. #3

    Default Re: Building a new site... need help!

    Thank you!!!

    I swear I'm going to learn all of this one day!

    one more itty bitty thing... how hard would it be to put a 3px wide white padding on the outside of the purple border to seperate it from all of the bubbles in the background? You can see what I'm talking about in that picture. Thank you again!

  4. #4
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Building a new site... need help!

    Quote Originally Posted by canemasters View Post
    Thank you!!!

    I swear I'm going to learn all of this one day!

    one more itty bitty thing... how hard would it be to put a 3px wide white padding on the outside of the purple border to seperate it from all of the bubbles in the background? You can see what I'm talking about in that picture. Thank you again!
    You could try editing
    includes/templates/YOUR_TEMPLATE/common/tpl_main_page.php

    so that you place an "outer wrapper" <div> around the page.

    First find the mainWrapper line of code and immediately above it add the highlighted portion as shown.

    <div id="outerWrapper">
    <div id="mainWrapper">

    Now find the following line of code and add the closing </div> as shown

    </div>
    <!--bof- parse time display -->

    Save the file and upload to your server.

    Add the following declaration to your stylesheet.css

    #outerWrapper {
    margin: auto;
    paddidng: 3px;
    background: #fff;
    width: 903px;
    }

    Save the file and upload to your server

  5. #5

    Default Re: Building a new site... need help!

    I'm learning a lot from this that I didn't before. Notice how I figured out how to place those stripes below my header from what you showed me on the footer??

    Thank you! I'll give this a shot.

    (I wish there was a diagram of what php file controled what aspect on the live page!)

  6. #6

    Default Re: Building a new site... need help!

    worked great! only, I had to change it to 806px, not 803px... needed 3px on each side.

    But still, it worked.

    Thank you.

  7. #7
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Building a new site... need help!

    Quote Originally Posted by canemasters View Post
    worked great! only, I had to change it to 806px, not 803px... needed 3px on each side.

    But still, it worked.

    Thank you.
    Glad to help.

 

 

Similar Threads

  1. v151 Need some help building a looping SQL query to fill an array.
    By Chris Stackhouse in forum General Questions
    Replies: 2
    Last Post: 3 Sep 2015, 08:19 PM
  2. v154 Need help building a plugin for the Contact Us page!
    By Feznizzle in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 13 Jun 2015, 05:04 PM
  3. v151 Error when building a test site and new template on server
    By kitcorsa in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 11 Nov 2013, 01:48 PM
  4. I'm making major progress in building my cart but I need some help with my layout
    By strugglingnovice in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 1 Jul 2010, 10:44 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg