Various - Slider, Leads Capture, Blog..

Discussion in 'BlogsTrend WordPress Theme' started by pinkseagull, Jul 18, 2014.

  1. pinkseagull

    pinkseagull New Member

    Joined:
    May 24, 2014
    Messages:
    9
    Likes Received:
    0
    Hi there

    I have a few questions please on some custom CSS and other bits and bobs if poss. I have searched through and can't find the answers. The site is www.kittypinker.com

    1) CSS for changing or removing the red line at the top underneath the top menu, currently red?
    2) Can I change the slider to put images there at all? Or does it have to be blog posts category only?
    3) CSS to change the colours of the lead capture form?
    4) Finally, I keep turning off the captcha on the capture form but it keeps turning itself back on! Any idea how to permanently disable the captcha?

    Thank you in advance
     
  2. pinkseagull

    pinkseagull New Member

    Joined:
    May 24, 2014
    Messages:
    9
    Likes Received:
    0
    Hi,

    Any chance someone may be able to get back to me today please? As I need to get on with the site...

    Thanks
     
  3. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    1. Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    div.top_menubar {
    border-bottom: 1px solid black;
    } 
    In place of "black" you can put your color or color code.

    Or if you want to remove that border then paste the code given below in Custom CSS section instead of above code.
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    div.top_menubar {
    border-bottom: none;
    } 
    2. It is the feature of this theme to display the images of particular category of blog post.
    So it is not possible for us to change it.

    3. Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .signupForm .heading {
    background: red;
    }
    .signupForm .signinForm input[type="text"], .signupForm .signinForm input[type="email"],.signupForm .signinForm textarea {
    border: 6px solid red;
    }
    .signupForm .signinForm input[type="submit"] {
    background: red;
    }
    .signupForm .signinForm input[type="submit"]:hover {
    background: orange;
    } 
    In place of "red" and "orange" you can put your color or color code.

    4. Our theme is working perfectly, no such problem exist.
    Go to the Appearance > Theme Options > Leads Capture Form Heading panel in your dashboard and turn OFF captcha from there and then click on the "save all changes" button.
    It will remove the captcha from the lead capture form,
    if not then clear the cache of your browser and check the issue on another system and browser.
     
  4. pinkseagull

    pinkseagull New Member

    Joined:
    May 24, 2014
    Messages:
    9
    Likes Received:
    0
    Thank you Piyush. I will try the captcha thing on another machine and let you know if the problem is still existing.

    Could you kindly also tell me the CSS to remove the title header and low opacity strip on the slider?

    Thank you
     
  5. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .flex-caption {
    display: none;
    }
     

    Thanks & Regards
    Gourav Shrivastava
     
  6. pinkseagull

    pinkseagull New Member

    Joined:
    May 24, 2014
    Messages:
    9
    Likes Received:
    0
    Thank you Gourav.

    Is there a way to change the padding on the leads capture box? As there is a space above it so it is not aligned to the slider in a straight line?
     
  7. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107

    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .sidebar {
    padding-top: 30px;
    } 
    You can adjust the value of "padding-top" as per your requirement.
    This will fulfill your requirement.
     

Share This Page