Support » Themes and Templates » How to remove quickslider border in PageLines theme?

  • Resolved Alex

    (@watsonega)


    I am using the PageLines theme for WordPress and have the QuickSlider on the homepage of my site. How do i remove the border, leaving just the image slider itself?

    Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • You might look at Pagelines’ site for theme specific help, or you’ll need to post a link to your site for help with this kind of CSS question.

    Or try using Firebug to help you identify the CSS code creating the border.

    Thread Starter Alex

    (@watsonega)

    Thanks. I’ve found a forums entry on pagelines’ site, but as I don’t have a username for the forum, the code snipped has been restricted to paid members only.

    The page is here: http://www.watsonega.com/index2.php/

    I’ll try Firebug now. Thanks for the response.

    Yeah, Firebug is a terrific help with CSS. Looks like the border is from this code — both the box shadow and background:

    .fslider {
        background: none repeat scroll 0 0 rgba(255, 255, 255, 0.4);
        border-radius: 5px 5px 5px 5px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
        padding: 5px;
    }

    Be sure you are making changes in a child theme or custom CSS option or plug-in.

    Thread Starter Alex

    (@watsonega)

    Thanks a lot. I’ve replaced that code with

    .fslider {
       background: none repeat scroll 0 0 rgba(255, 255, 255, 0.4);
       border-radius: 0px 0px 0px 0px;
       box-shadow: 0 0px 0px rgba(0, 0, 0, 0.4);
       padding: 5px;
    }

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to remove quickslider border in PageLines theme?’ is closed to new replies.