Problem with code

Discussion in 'RoadFighter WordPress Theme' started by elames3, Dec 5, 2013.

  1. elames3

    elames3 Member

    Joined:
    Jan 16, 2012
    Messages:
    89
    Likes Received:
    0
    I have tried all day adjusting these settings with custom styles. They work when I view in Firebug but do not work when put into custom styles. What is the problem? This is very frustrating
    I need the correct codes.
    I have removed the Cufon setting from the custom.js but nothing will work.
    Need your assistance asap
    Thank you

    Also I have one post but it is not showing under the blog section on the home page.

    .body {
    font-family:"Trebuchet MS", 'Verdana', Helvetica, Arial, sans-serif;
    font-size:15px;
    line-height:25px;
    color:#000000;
    background:url(images/bg.png) repeat;
    background-attachment:fixed;
    }
    .h1, h2, h3, h4, h5, h6 {
    font-family: "Trebuchet MS", verdana, Arial, sans-serif;
    font-weight:normal;
    color:#010101;
     
  2. Piyush

    Piyush Support Staff

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

    You are putting the wrong code in the custom css section that's why it is not working.
    So remove the above shown code from the custom css section and then paste the code given below in that custom css section.

    Code:
    body {
    font-family: "Trebuchet MS", 'Verdana', Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 25px;
    color:#000000;
    background:url( Enter your image address here) repeat;
    background-attachment:fixed;
    }
    h1, h2, h3, h4, h5, h6 {
    font-family: "Trebuchet MS", verdana, Arial, sans-serif;
    font-weight:normal ! important;
    color:#010101;
    }
    This will work fine.

    Could you please share us your website link so that we can check your post display issue on home page,
     
  3. elames3

    elames3 Member

    Joined:
    Jan 16, 2012
    Messages:
    89
    Likes Received:
    0
    Sorry I thought I had given the site: http://mountainbreezeriver.com/wp
    But your code did not work either. I am still seeing the CUFON font which is ragged and hard to read.

    Nothing changed. Posts are still not showing either.

    Here are the codes I want to change. When I do them in Firebug, they work but when I paste into custom styles, they do not.

    body {
    font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
    font-size: 16px;
    {
    h1, h2, h3, h4, h5, h6 {
    font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
    font-weight:bold ! important;
    color: #523516;
    }
    .home-content .page_info {
    margin-bottom: 20px;
    padding-bottom: 20px;
    }
    feature-content {
    padding-bottom: 15px;
    margin-bottom: 22px;
    }
    feature-content .feature-content-inner .feature-content-text {
    background-color: #ffffff;
    {

    Thank you
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,
    I think you have not created the blog page yet,
    Go to the Pages > Add New panel in your dashboard and
    create your blog page by selecting the blog template from Page Attribute section,
    your blog post will automatically display on this page.

    Fo the code issue, you are doing some mistake in the code while putting it in the Custom CSS that's why it is not working.
    Go to the Appearance -> Theme Options -> Styling Options -> Custom CSS in your dashboard and
    follow the instruction shown in the image given below.

    [​IMG]

    This will solve your issue.
     
  5. elames3

    elames3 Member

    Joined:
    Jan 16, 2012
    Messages:
    89
    Likes Received:
    0
    Yes, thank you that worked except for the featured image boxes. I want the area below the 3 images to have a white background
    I thought this would do it but it does not.

    feature-content .feature-content-inner .feature-content-text {
    background-color: #ffffff;
    {
     
  6. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello Elames,

    You have got correct code but with the same mistake. That you have done in the previous code.
    At the end of code there must be "}" not "{".
    So Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .feature-content .feature-content-inner .feature-content-text {
    background-color: #ffffff;
    }
    Thanks & Regards
    Nitesh Raghuwanshi
     

Share This Page