Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #6217

    I have just bought the Pro version and I have a couple of thing I would like to do:

    1. Reduce the footer heigth. How can I do?

    2. After installing the Pro version, I have a problem in the slider titles. Now there is no margin in the left side of the titles as it used to be in the free version. As well, I managed to change the color of the titles with CSS custom:

    #main-slider .entry-title a {color: #ffffff; background-color: transparent;}

    #main-slider .entry-title a:hover {color: #ffffff; background-color: transparent;}

    but now, it is not working. The background is still transparent, but the color is black instead of white.

    How can I fix?

    Sorry, I have not uploaded my website yet. I am working wit a local server until it is finished.

    Thanks.

    #6255
    Sakin
    Keymaster

    @Ancestral0: I will try to answer your question but it cannot be 100% as I am not being able to see your site. So, I will be answering on the basis that you are using the latest version of Catch Everest Pro Theme. But you have posted question in Catch Everest Free Theme. So, bit confused.

    1. For your footer height, just add the following css in “Custom CSS” box in Theme Options panel.
    #site-generator .site-info { padding: 20px 0; }

    2. The following css should work
    #main-slider .entry-title a { background: none transparent; }

    For more I will only be able to see it once it is live or at list I have access to it.

    #7614

    Thanks.

    1. Footer height is working.

    2. Slider titles are not changing the color. The background works perfectly. I would like to change the text color to white. I will come back once I publish the site.

    #7627
    Sakin
    Keymaster

    @Ancestral0: Send me your site URL and the remaining questions. So, that I can check in your site and send you the code.

    #17171
    oroblin
    Member

    Hello !

    I use Catch Everest Pro and it s really a great theme. I have almost finished my site but still have the following issues that I cant solve :

    1. Footer height
    I would like to reduce the height of the black footer. I have tried #site-generator .site-info { padding: 20px 0; } in the custom CSS but it does not work. Any advice ?

    2. Paragraph line space
    The space between 2 paragraph of text content in a page is to large. I tried many custom CSS but none of them work. Can you help please?

    Cheers

    #17181
    Sakin
    Keymaster

    @oroblin: You should add your site URL in order to check in the details.
    For footer height the custom css in “Appearance => Theme Options => Custom CSS” should work.

    #site-generator .site-info {
        padding: 10px 0;
    }

    For paragraph, you can add the following CSS in “Appearance => Theme Options => Custom CSS” should work.

    p {
        margin-bottom: 20px;
    }

    But be careful on these custom css code, as these css will be added to all devices and might effect your mobile devices spacing. So, if you want to change only for large screen then add as below:

    @media screen and (min-width: 1061px) {
    #site-generator .site-info {
        padding: 10px 0;
    }
    p {
        margin-bottom: 20px;
    }
    }
Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Footer size and titles in slider’ is closed to new replies.