• Hi, I’ve a couple of styling questions:
    1) How can I change the color of the border to a different one from the available options – red/black. I’d like a curvy dark gray border.
    2) How can I change the height of the search bar or it’s size overall? I can only change the width.
    3) How can I change the color of the post title in the search results. It’s now blue, I’d like to change it to dark red.
    Thanks!
    D

Viewing 1 replies (of 1 total)
  • Plugin Author wpdreams

    (@wpdreams)

    Hi,

    You will need a few lines of custom CSS code to achieve these.

    1. This should help:

    div.asl_w .probox {
        border: 2px solid #eee !important;
    }

    2. The height is calculated based on the horizontal padding (8px) and the actualy height (set to 28px by default). By lowering/increasing the padding, you can affect the height:

    div.asl_m .probox {
        padding: 0px 8px !important;
    }

    Change the first number to whatever you like (except negatives).

    3. With this:

    .asl_res_url {
        color: #b70000 !important;
    }

    I hope these help.

    Best regards,
    Ernest M.

Viewing 1 replies (of 1 total)

The topic ‘Styling questions’ is closed to new replies.