Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter 631art

    (@631art)

    i had this problem a while back, as well as some blank space i wanted to remove and placed this code in the stylesheet:

    #secondary {
    display: none;
    }

    .site::before {
    z-index: 0;
    }

    but now the problem is back.

    thank you if you can help.

    Forum: Plugins
    In reply to: [WooCommerce] Unused Images
    Thread Starter 631art

    (@631art)

    Hello Yes I looked at that. Do you know if unattached really means the image is not being used? Last night I downloaded my wordpress files and then cross checked them and deleted the images from old products through ftp i downloaded a few thousand that way last night. right now what i have left are the default images created by wordpress that are not being used and trying to figure out which sizes are not being used.

    Thread Starter 631art

    (@631art)

    hello this is my site:

    https://631art.com/drawings/

    to install the three columns i did this:

    functions :

    register_sidebar(array(
    ‘name’ => ‘Footer Widget 1’,
    ‘id’ => ‘footer-1’,
    ‘description’ => ‘First footer widget area’,
    ‘before_widget’ => ‘<div id=”footer-widget1″>’,
    ‘after_widget’ => ‘</div>’,
    ‘before_title’ => ‘<h2>’,
    ‘after_title’ => ‘</h2>’,
    ));

    register_sidebar(array(
    ‘name’ => ‘Footer Widget 2’,
    ‘id’ => ‘footer-2’,
    ‘description’ => ‘Second footer widget area’,
    ‘before_widget’ => ‘<div id=”footer-widget2″>’,
    ‘after_widget’ => ‘</div>’,
    ‘before_title’ => ‘<h2>’,
    ‘after_title’ => ‘</h2>’,
    ));

    register_sidebar(array(
    ‘name’ => ‘Footer Widget 3’,
    ‘id’ => ‘footer-3’,
    ‘description’ => ‘Third footer widget area’,
    ‘before_widget’ => ‘<div id=”footer-widget3″>’,
    ‘after_widget’ => ‘</div>’,
    ‘before_title’ => ‘<h2>’,
    ‘after_title’ => ‘</h2>’,
    ));

    footer:

    <div id=”footer-widgets”>

    <div id=”footer-widget1″>
    <?php if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar(‘footer-1’) ) : ?>
    <?php endif; ?>
    </div>

    <div id=”footer-widget2″>
    <?php if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar(‘footer-2’) ) : ?>
    <?php endif; ?>
    </div>

    <div id=”footer-widget3″>
    <?php if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar(‘footer-3’) ) : ?>
    <?php endif; ?>
    </div>
    </div>
    <div style=”clear-both”></div>

    style:

    #footer-widgets {
    display: block;
    width:950px;
    margin-right:0;
    background: #ffffff;
    }
    #footer-widget1 {
    width: 260px;
    float: left;
    margin: 15px 10px 10px 30px;
    padding: 10px;
    background-color: #ffffff;
    }
    #footer-widget2 {
    width: 260px;
    float: left;
    margin: 15px 10px 10px 15px;
    padding: 10px;
    background-color: #ffffff;
    }
    #footer-widget3 {
    width: 260px;
    float: left;
    margin: 15px 10px 10px 15px;
    padding: 10px;
    background-color: #ffffff;
    }

    Thread Starter 631art

    (@631art)

    i inserted the code into the style sheet
    and it worked thank you so much !!!

    i have no idea how that worked or what the code means but i will learn more abut coding, at first html was very different for me also.

    thanks again i appreciate it !!!

    Thread Starter 631art

    (@631art)

    in the editor for the theme which page would i put that. i see many people exchanging coding for the sites but I am nnot too familiar in where i should put the code. thank you very much.

Viewing 5 replies - 1 through 5 (of 5 total)