Forum Replies Created

Viewing 20 posts - 3,081 through 3,100 (of 14,507 total)
  • Author
    Posts
  • in reply to: social Icon #60854
    Sakin
    Keymaster

    @Daniel: You can change the color code in the following css and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    .site .widget-area .widget_catchresponsive_social_icons a:hover {
    	background-color: #3b5998;
    	border-color: #3b5998;	
    }
    in reply to: Add fonts #60853
    Sakin
    Keymaster

    @toni: Can you let me know which H1 are you talking about. As When I check in your site, the H1 have been changed.

    in reply to: Programmatically modify featured content? #60852
    Sakin
    Keymaster

    @Stephen: Cool that you sorted it. Thanks 🙂

    in reply to: Widget panel (backend) #60851
    Sakin
    Keymaster

    @Michaela: Yes, this is strange. We haven’t seen this issue. Ok I will send you email and you can let me know there.

    in reply to: Change site width without affecting responsive version #60833
    Sakin
    Keymaster


    @jamepompey
    : Here goes the css that you can use for bigger screen size. Thanks for your appreciation 🙂

    /* For screen size above 1000px */
    @media screen and (min-width: 1001px) {
        .site {
            width: 80%;
        }
        #primary {
            width: 75%;
        }
        #secondary {
            width: 22%;
        }
    }
    in reply to: responsive picture #60832
    Sakin
    Keymaster

    @iagu: Please check in your custom css. It’s not theme issue. It’s your additional css that is causing issue. Mainly because of the following css. Please find it and remove it.

    img {
        max-width: 1600px !important;
    }
    in reply to: two vidgets at header right sidebar in one line #60830
    Sakin
    Keymaster

    @Vitaliy: Please add in widgets in your header right sidebar and post in your site URL here. Then I will check in your site and suggest you the custom css.

    in reply to: Programmatically modify featured content? #60829
    Sakin
    Keymaster

    @Stephen: I have already given you the instruction for advance customization. I will explain it little more. First, you need to build child theme. Then you can copy the functions which you want to edit to your child theme functions.php file.
    1. Function catchresponsive_featured_content_display() is the final function which display the featured content. It checks which featured content type you have selected.
    2. Function catchresponsive_post_content() is the function which handles the featured post content. So, if you have selected Featured Post slider then you might want to check this. For page it will be catchresponsive_page_content(), category will be catchresponsive_category_content() and image will be catchresponsive_image_content()

    in reply to: Add fonts #60828
    Sakin
    Keymaster

    @toni: You have issue in your child theme css. Are you sure that CSS is given by FontSquirrel. There is issue with url it cannot be 'fonts'atrament_regular-webfont.eot' and should be 'fonts/atrament_regular-webfont.eot'. So, you need to replace that all. For example, replace the following css:

    @font-face {
        font-family: 'atramentregular';
        src: url('fonts'atrament_regular-webfont.eot');
        src: url('fonts'atrament_regular-webfont.eot?#iefix') format('embedded-opentype'),
             url('fonts'atrament_regular-webfont.woff2') format('woff2'),
             url('fonts'atrament_regular-webfont.woff') format('woff'),
             url('fonts'atrament_regular-webfont.ttf') format('truetype'),
             url('fonts'atrament_regular-webfont.svg#atramentregular') format('svg');
        font-weight: normal;
        font-style: normal;
    }

    with this

    @font-face {
        font-family: 'atramentregular';
        src: url('fonts/atrament_regular-webfont.eot');
        src: url('fonts/atrament_regular-webfont.eot?#iefix') format('embedded-opentype'),
             url('fonts/atrament_regular-webfont.woff2') format('woff2'),
             url('fonts/atrament_regular-webfont.woff') format('woff'),
             url('fonts/atrament_regular-webfont.ttf') format('truetype'),
             url('fonts/atrament_regular-webfont.svg#atramentregular') format('svg');
        font-weight: normal;
        font-style: normal;
    }
    in reply to: Add fonts #60821
    Sakin
    Keymaster

    @toni: Can you send me your site URL and let me know what are you trying to do it. Then I can check in.

    in reply to: Featured Gallery Widget on Homepage #60787
    Sakin
    Keymaster

    @Linda: I have just replied your support ticket

    in reply to: adjusting catch base #60768
    Sakin
    Keymaster

    @annebelle: You can try adding in the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    #site-branding, #site-logo {
        display: block;
        margin: 0;
        padding: 0;
    }
    .sidebar-header-right {
        display: none;
    }
    in reply to: Add fonts #60764
    Sakin
    Keymaster

    @toni: Then open your child theme style.css and add your css given by FontSquirrel. If you have stylesheet.css in your font folder then you can add the following css:
    @import url('fonts/stylesheet.css');

    in reply to: How to add shortcode in home page before footer #60762
    Sakin
    Keymaster

    @harish: Sorry, your site in not working so I am not able to check in where exactly you wanted and your settings.

    1. If you have A static page in your Front page displays from “Settings => Reading”, then you can simple add that shortcode in that page.
    2. If you have added in Footer area from “Appearance => Widgets”, then you can control widget visibility to show that widget only in homepage. For that you need to use plugin like “JetPack” and activate “Widget Visibility” module.

    in reply to: Uploading Newly Purchased Theme #60759
    Sakin
    Keymaster

    Ok Done. Can you check your email now.

    in reply to: Background image for page itself? #60757
    Sakin
    Keymaster

    @Michael: Thanks for your appreciation 🙂

    in reply to: Static Page Not Showing Content #60742
    Sakin
    Keymaster

    @Christine: You need to remove the following css from “Appearance => Theme Options => Custom CSS” box:

    .home .type-page {
        display: none;
    }
    in reply to: Moving the slider left or right #60741
    Sakin
    Keymaster
    in reply to: Blank Home Page #60740
    Sakin
    Keymaster

    @rojtalbot: I don’t get it what do you mean by you cannot find an option to blank the homepage. Sorry, I don’t understand it.

    in reply to: Featured content image size #60739
    Sakin
    Keymaster

    @Jonathan: Can you go to “Jetpack” plugin settings and deactivate “Photon” module and check in.

Viewing 20 posts - 3,081 through 3,100 (of 14,507 total)