Forum Replies Created

Viewing 10 replies - 46 through 55 (of 55 total)
  • Thread Starter tonyx4x44

    (@tonyx4x44)

    yep … fast… thanks

    fixed by update some minutes ago.

    Thread Starter tonyx4x44

    (@tonyx4x44)

    the whole lot

    i have even tried reinstalling the child theme

    i’m 100 percent sure its alright

    Thread Starter tonyx4x44

    (@tonyx4x44)

    don’t know how to do that

    frustrating

    maybe i’ll just move them back to custom css

    Thread Starter tonyx4x44

    (@tonyx4x44)

    i removed it now and moved my code from custom css to the style.css file

    and some of my previously working customizations stopped working

    eg my search bar in menu is now open

    each post on the front page was boxed with colored box borders

    etc

    if i move them back to custom css it will surely work

    /*
    Theme Name:     Customizr Child
    Theme URI:      https://themesandco.com/customizr
    Description:    A child theme for the Customizr WordPress theme. This child theme simply includes 2 files : style.css to add your custom css and functions.php where you can extend Customizr's core code. In order to keep your code as clean and flexible as possible, try to use Customizr's hooks API for your customizations. Do something awesome and have fun !
    Author:         Nicolas Guillaume (nikeo)
    Author URI:     https://themesandco.com
    Template:       customizr
    Version:        1.0.0
    */
    
    /* Your awesome customizations start right here !
    -------------------------------------------------------------- */
    
    .navbar-inner .social-block {
    float:          right;
    margin-top:     10px;
    margin-right:   0px;
    text-align:     right;
    }
    /* Move Tagline to Left    */
    .navbar-wrapper .navbar h2 {
    float:          left;
    margin-top:     10px;
    margin-left:    20px;
    text-align:     left;
    }
    /* Hide Tagline, if not needed */
    .navbar-wrapper .navbar h2 {
    display:        none;
    }
    
    /* Styling a search form in the menu -- see accompanying php*/
    
    /* my-nav-menu-search menu item created in functions.php. Move it way over to the right */
    .navbar .nav .my-nav-menu-search {
        float: right;
    }
    .navbar .nav {
        width: 100%;
    }
    
    /*Stop the display of the Search button*/
    .my-nav-menu-search .search-submit {
        display: none;
    }
    /* The \"Search for\" text is needed for screen readers, but we move it off screen, so we won\'t see it */
    .my-nav-menu-search .search-form .screen-reader-text {
        position: absolute;
        left: -9999px;
        overflow: hidden;
    }
    
    /* Add a magnifying glass background and style the search input textbox */
    .my-nav-menu-search .search-field {
        background-color: transparent;
        /* CHANGE THIS LINK TO POINT TO YOUR SEARCH ICON */
        background-image: url(https://www.boyantech.com/wp-content/uploads/2015/08/search-icon-th.png);
        background-repeat: no-repeat;
        background-position: 5px center;
        -webkit-background-size:    18px 18px;
        background-size:            18px 18px;
        border: none;
        -webkit-box-shadow:    none;
        -moz-box-shadow:       none;
        box-shadow:            none;
        cursor: pointer;
        height: 26px;
        margin: 2px 0 2px 0;
        padding: 0 0 0 36px;
        position: relative;
        -webkit-transition:    width 400ms ease, background 400ms ease;
        -moz-transition:       width 400ms ease, background 400ms ease;
        -o-transition:         width 400ms ease, background 400ms ease;
        transition:            width 400ms ease, background 400ms ease;
        width: 0px;
    }
    
    .my-nav-menu-search .search-field:active,
    .my-nav-menu-search .search-field:focus {
        background-color: #fafafa;
        color: #5a5a5a;
        /* swap the two colours above if you are working with a dark navbar background */
        border: 2px solid #c3c0ab;
        cursor: text;
        outline: 0;
        width: 85px;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow:         none;
        margin: 0;
    }
    /* Reset nav width and search floating for mobile menu */
    @media (max-width: 979px){
        .navbar .nav .my-nav-menu-search {
            float: left;
        }
        .navbar .nav {
            width: auto;
        }
    }
    
    .navbar .nav li.free_download.btn {
    position: relative; bottom: 10px;
    padding: 2px; line-height: 19px;
    vertical-align: bottom;
    }
    .navbar .nav li.free_download.btn a {
    color: #FFF;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.31);
    padding: 3px 13px;
    }
    
    body:not(.single-post) #content > article {
      padding: 15px 20px;
      margin: 0 0 25px;
      background: #ffffff none repeat scroll top left;
      background-image: none;
      border: solid 6px #5BC8B4;
      -moz-box-shadow: 0 0 5px rgba(0, 0, 0, .1);
      -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .1);
      -goog-ms-box-shadow: 0 0 5px rgba(0, 0, 0, .1);
      box-shadow: 0 0 5px rgba(0, 0, 0, .1);
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
    }
    
    #right.widget-area .widget_text{
    border: 2px solid #eee;
    padding: 15px;
    }

    i just don’t know what I’m doing wrong

    Thread Starter tonyx4x44

    (@tonyx4x44)

    Andrew thanks for you reply…

    should i move that entire block of code to the functions.php??

    Thread Starter tonyx4x44

    (@tonyx4x44)

    Thread Starter tonyx4x44

    (@tonyx4x44)

    this is a child theme… the official one

    an that is the style.css of my child theme

    i have added some codes previously as shown in the pic that work flawlessly

    the last code is the one you just posted… it doesn’t do anything

    Thread Starter tonyx4x44

    (@tonyx4x44)

    i found a tweak some hours ago to place a custom tagline under the site title. i liked that.

    the social icons still don’t move

    link to a picture of my child css

    Thread Starter tonyx4x44

    (@tonyx4x44)

    Thread Starter tonyx4x44

    (@tonyx4x44)

Viewing 10 replies - 46 through 55 (of 55 total)