• Resolved pmiller1956

    (@pmiller1956)


    Having problems getting rid of white space in default template.
    Created a Child Theme. Making changes in CSS style sheet of child theme.

    Here is my CSS:

    /*
    Theme Name:     Twentyl Eleven Child
    Description:    Child Theme for the Twenty Eleven theme
    Author:         Paul Miller
    Template:       twentyeleven
    
    (optional values you can add: Theme URI, Author URI, Version)
    */
    
    @import url("../twentyeleven/style.css");
    
    /*
    #access {
    background: -moz-linear-gradient(#252525, #0A0A0A) repeat scroll 0 0 transparent;
    }
    */
    
    #access {
    background: none repeat scroll 0 0 #26639E;
    }
    
    #access li {
    margin-bottom:7px;
      //margin-bottom:0;
    }
    
    #access ul {
      font-size: 12px;
      //font-size: 1.0em;
      font-weight:bold;
    }
    
    #access a {
      height: 29px;
    
    }
    
    #access li:hover > a,
    #access ul ul :hover > a,
    #access a:focus {
    background:#3884CF; /* changes bg color of drop-down menus that have the mouse over them */
    color: #ffffff;/* changes text color when moused over */
    
    }
    #access ul li:hover > ul {
    	display: block;
    }
    
    /*
    #access .current-menu-item > a,
    #access .current-menu-ancestor > a,
    #access .current_page_item > a,
    #access .current_page_ancestor > a {
    	font-weight: bold;
    }
    */
    
    #access div {
      float:left;
      margin-left: 29px;
    
    }
    
    #btns{
    	position:absolute;
    	margin-left:670px;
    	margin-top:145px;
    }
    
    /*
    Code to change default template to display full-width.*/
    
    * Singular */
    
    .singular #primary {
    margin: 0 0 0 0;
    }
    .singular #content,
    .left-sidebar.singular #content {
    margin: 0 7.6%;
    position: relative;
    width: auto;
    }
    .singular .entry-header,
    .singular .entry-content,
    .singular footer.entry-meta,
    .singular #comments-title {
    margin: 0 auto;
    width: 100%;
    }
    
    /*Get rid of titles on each page.*/
    .page .entry-title { display: none; }
    
    /*Get rid of white space at the top of the page*/
    .singular.page .hentry {
        padding: 0;
    }
    
       #main {
        clear: both;
        padding: 0;
    }
    
    .column_header {
    				color: rgb(0,,0);
    				font-family: "Arial";
    	  			font-size:20px;
    	            font-weight: 700;
    	            line-height: 18px;
      }

    Here is my website: https://13009.duvosoftware.com/

    Need to get image on left to touch the bottom of the navigation menu.
    ALso need to get rid of border around image.

    Any help would be appreciated.

    Thank you,
    Paul

Viewing 4 replies - 1 through 4 (of 4 total)
  • I’m not seeing a gap on the left – do you mean the box on the right with your pricing listed? Or did you fix it on your own?

    Thread Starter pmiller1956

    (@pmiller1956)

    Yes, the box on the right with the prices.
    I am trying to recreate a page that was done in html to a wordpress site.

    In order to move that one price box up, you’d have to move the whole div containing the other columns up as well – or you can try to define a new div for just that image, floated right with no padding at the top. It’s the “entry-content” class on line 769 of your stylesheet that is giving you the padding.

    Thread Starter pmiller1956

    (@pmiller1956)

    Jess,
    Wow, Great.
    Thank you so much.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘white space in default template’ is closed to new replies.