Geocraft theme

Discussion in 'GeoCraft WordPress Theme' started by elom, Mar 9, 2013.

  1. elom

    elom New Member

    Joined:
    Mar 9, 2013
    Messages:
    8
    Likes Received:
    0
    Hello
    As I try to install the geocraft theme i got this message
    Can someone help with this ?
    Thanks
    Fatal error: Cannot redeclare class Paypal in /homez.490/welovedi/www/wp-content/themes/geocrafttheme/library/getway/paypal/paypaltrans.php on line 3
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Please check in your dashboard that you aren't using any Paypal plugin, if using then deactivate it, This will solve your issue, If not then,

    Please provide the following information listed below.

    Thread Link:
    Your Website URL:
    WordPress Username:
    WordPress Password:

    Send this information on our email at [email protected]
    We will install theme for you.
     
  3. elom

    elom New Member

    Joined:
    Mar 9, 2013
    Messages:
    8
    Likes Received:
    0
    Hello

    Thanks for your help.
    One more question I want to temporary disable the home page
    How can I do this ?
     
  4. Gourav

    Gourav Support Staff

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

    Go to

    Geocraft Settings > Theme Option > General Settings > Front Page On/Off

    and turn it Off.
     
  5. elom

    elom New Member

    Joined:
    Mar 9, 2013
    Messages:
    8
    Likes Received:
    0
    Hello
    Thanks for your response. I need to change the color
    of the header and the footer from green to something else.
    I have seen in the forum that you told some one to use thise code
    .wrapper {
    background: red
    }
    .header {
    background:red ;
    }
    I does not change the header. It change the font color.
    Which code to use to change the header background and the footer background color?
    Also How to change the police for the whole theme?
    And in the header where you put add business listing for $26 How to change the background orange color
    in something else
     
  6. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    1.For your first issue

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

    Code:
    .footer_wrapper {
    background: red!important;
    }
    .header_wrapper .header {
    background: red!important;
    }
    .footer_bottom {
    background: red;
    }
    2.For your second issue

    Go to
    Geocraft Settings > Theme Option > Styling Option > Theme Stylesheet

    and choose your color scheme.
    3.For your third issue
    It is not possible to change its color because it is a image not color, If you want to change it color then, Go to images directory present in your theme directory and replace your image with present post button image or edit it.
    The name of image is
    1. "post-btn.png"
    2."post-btn-center.png"
    3. "post-btn-hover.png"
    Note:- Use same name for your edited image and remove the current image.
     
  7. elom

    elom New Member

    Joined:
    Mar 9, 2013
    Messages:
    8
    Likes Received:
    0
    Hello,
    For the 1st point your response did not change the color of the whole header.
    The part where it is written add listing and login is still in green;

    For my second point what i was meaning is to change the text police. From ms serif, I want to use times new roman for instance;
    Thanks in advance
     
  8. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .top_strip {
    background: red;
    }
    h1,h2,h3,h4,h5,h6{
    font-family:symbol!important;
    }
    p{
    font-family:symbol!important;
    }
    a{
    font-family:symbol!important;
    }
    Inplace of "symbol" put your font type.
     
  9. elom

    elom New Member

    Joined:
    Mar 9, 2013
    Messages:
    8
    Likes Received:
    0
    Thanks!
    What about the font color now ? Where to change that for the whole website.
     
  10. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS


    Code:
    h1, h2, h3 ,h4, h5, h6{
    color:red!important;
    }
    p{
    color:red!important;
    }
    a{
    color:red;
    }

    Inplace of "red" put your color code.
     
  11. elom

    elom New Member

    Joined:
    Mar 9, 2013
    Messages:
    8
    Likes Received:
    0
    Hello,
    Thanks for your reply, but the code does not change the color text in the header and in the slider !
    There is something missing. Can you provide me with the missing part ?
    Thanks in advance
     
  12. Nitesh

    Nitesh Support Staff

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

    I have checked your site. There is a mistake in the css code that you have added in custom css.
    You misses adding '}' after 8th line. Check image for reference.

    [​IMG]

    After that remove previous color code and paste code given below in custom css

    Code:
    .content_wrapper .featured_content .f_post_content .f_post_title a {
    color: your color value;
    }
    .featured_content h1 {
    color:  your color value;
    }
    .sidebar h4 {
    color:  your color value;
    }
    a{
    color:  your color value;
    }
    a:hover {
    color:  your color value;
    }
    .content_wrapper .info_bar {
    color:  your color value;
    }
    p{color: your color value;
    }
    .footer_wrapper .footer_widget h5 {
    color:  your color value;
    }
    .jcarousel-skin-tango li h3 a {
    color:  your color value;
    }
    .jcarousel-skin-tango {
    color: rgb(187, 67, 67);
    }
    .sidebar .review_thumb a {
    color:  your color value;
    }
    .sidebar .review_thumb a:hover {
    color:  your color value;
    }
     

Share This Page