• Resolved dmahsiri

    (@dmahsiri)


    Hi,
    I am using pagelines theme, and I would like to add borders to the widgets in the sidebar.
    Widgets seems to be mixed together, Is there a plugin I can use to add borders to my widgets?
    This is my website :site

Viewing 6 replies - 16 through 21 (of 21 total)
  • Okay, replace that with this:

    /*
    Theme Name:     Page Lines Child
    Description:    Child theme for the Page Lines
    Template:       pagelines
    Version:        1.0.0
    */
    
    @import url("../pagelines/style.css");
    
    .widget-title {
    color: rgba(0,0,0,0.7);
    text-align: left;
    padding: 3px 8px 3px 0px;
    margin-bottom: .6em;
    background-color: #EE6AA7;
    }
    Thread Starter dmahsiri

    (@dmahsiri)

    It is working:D thanks
    I just need to make the pink title back ground’s height a little bit more?
    so if I need to change the styles of my theme, just enter a code to the child’s theme ?

    Yes, just insert the CSS you need. There are lots of CSS functions, and lots of websites that can tell you how to use it.

    To make it taller, just add height: 20px; before that last }. Of course, 20px may not be the right size for you – try different sizes.

    Thread Starter dmahsiri

    (@dmahsiri)

    .widget-title {
    color: rgba(0,0,0,0.7);
    text-align: left;
    padding: 3px 8px 3px 0px;
    margin-bottom: .6em;
    background-color: #EE6AA7;20px
    }

    Is that where to add height?

    Sorry, should have been clearer about that.

    So this

    .widget-title {
    color: rgba(0,0,0,0.7);
    text-align: left;
    padding: 3px 8px 3px 0px;
    margin-bottom: .6em;
    background-color: #EE6AA7;
    }

    becomes

    .widget-title {
    color: rgba(0,0,0,0.7);
    text-align: left;
    padding: 3px 8px 3px 0px;
    margin-bottom: .6em;
    background-color: #EE6AA7;
    height: 20px;
    }
    Thread Starter dmahsiri

    (@dmahsiri)

    Got it,
    thanks alot ??

Viewing 6 replies - 16 through 21 (of 21 total)
  • The topic ‘Looking for a plugin to customize my sidebar’ is closed to new replies.