Forum Replies Created

Viewing 20 posts - 1,641 through 1,660 (of 2,006 total)
  • Author
    Posts
  • in reply to: gravitar for blog authog #88016
    Pratik
    Member

    Hi @hollyen,

    You can have anything you want there but you need to do a bit of customization for that. First, create a child theme. Details for creating a child theme is here.

    Then in the child theme’s functions.php, add function posted here: http://pastebin.com/WNFepRRW

    Then in there you can edit line 28 to 34 to add any effect you want using html, css and even php.

    If you are not familiar with customization, please hire a customizer.

    Regards,
    Pratik

    in reply to: Add a background image #87975
    Pratik
    Member
    in reply to: Content/settings free theme on Premium theme #87973
    Pratik
    Member

    Hi @Randal,

    Great you solved it. Let me know if there are any other issues.

    Regards,
    Pratik

    in reply to: Edit Footer, disable Search #87972
    Pratik
    Member

    Hi @pedrokraft,

    To edit footer content, you will need to upgrade to pro version. Check out the theme here and its details here.

    To disable search completely, you will need to upgrade to pro version too. But, you can hide the search using Custom CSS. It will be there but will be hidden. To achieve it, you can add following CSS code in Appearance=> Customize=> Theme Options => Custom CSS box:

    
    #search-toggle {
        display: none;
    }
    

    If this does not work, please post in your site url.

    Regards,
    Pratik

    in reply to: Float featured image left #87969
    Pratik
    Member

    Hi @michelled,

    Can you please post in your site url so I can check it?

    Regards,
    Pratik

    Pratik
    Member

    Hi @Michael,

    What you have mentioned is possible but it will be a bit difficult. It involves using a child theme and making a bit of customization. If you are comfortable with it let me know and I will give you instructions on how to do so.

    Regards,
    Pratik

    in reply to: Featured image no longer appearing on Pages #87967
    Pratik
    Member

    Hi @krizgriz,

    This is a strange issue. The Featured Images should not have disappeared.

    Can you let me know from where you changed the settings to show featured image as header image? Because I do not think this option existed in Catch Evolution Free version. It is only available in Catch Evolution Pro version. Have you by any chance downgraded from pro to free version?

    Regards,
    Pratik

    in reply to: Featured (Page) Content issues #87965
    Pratik
    Member

    Hi @brianmor,

    Can you please post in your site url so that I can check it?

    Regards,
    Pratik

    in reply to: Removing all table borders #87964
    Pratik
    Member

    Hi @Eva,

    I will need the page link where you want table border to be removed. Can you provide that?

    Regards,
    Pratik

    in reply to: Add a background image #87963
    Pratik
    Member

    Hi @taylor,

    Clean Journal is a full-width theme. Even though the it is possible to limit the width, there will be a need of checking the design on all devices for responsive site to work.

    I need to check your site but it asks for password. Can you provide that?

    Regards,
    Pratik

    in reply to: Conditional menues not working #87962
    Pratik
    Member

    Hi @xherbie,

    That type of functionality will require some custom work. It will require you to filter the menu via Custom Nav Walkers. I am sorry but this falls outside our support scope. Please consider hiring a customizer.

    Regards,
    PRatik

    in reply to: Content/settings free theme on Premium theme #87961
    Pratik
    Member

    Hi @Randal,

    The settings from free theme should migrate to pro theme as in Catch Kathmandu Pro as they use same option.

    The menus will not migrate though as they are handled via core. This will be taken care of in next version update as well.

    Can you post in your site URL so I can check it?

    Regards,
    Pratik

    in reply to: gravitar for blog authog #87935
    Pratik
    Member

    Hi Hollye,

    Do you mean in http://mydreamlife.me/dream-video-devil-room/ where your name is beside a user icon?
    This is not possible as that is just a link. Avatars will show up on comments.

    If it is somewhere else, please let me know.
    Regards,
    Pratik

    in reply to: Need Borders / Shadow Behind Page/Post #87934
    Pratik
    Member

    Hi @Shop43,

    1. Oh, you meant separately for each post, well I thought separately for main and primary sidebar :D. For that use following Code:

    
    #primary article {
        border-top: 2px solid #000000; /* Remove this line if you do not want border top */
        border-right: 2px solid #000000; /* Remove this line if you do not want border right */
        border-bottom: 2px solid #000000; /* Remove this line if you do not want border bottom */
        border-left: 2px solid #000000; /* Remove this line if you do not want border left */
        border-radius: 5px;
    }
    

    Just remove the lines that you do not want and that side’s border will be removed.

    For Sidebar, The Search and Social media icon have bottom border. Do you want to just add just the left and right borders to them, or completely enclose them with a different border removing the previous border. Can you explain this a bit, I am confused.

    6. For that use following CSS Code:

    
    #sidebar-header-top .widget.widget_widget_catchbox_adwidget {
        margin: 5px;
    }
    

    Just increase or decrease the size of 5px and the margin will increase/decrease.

    Regards,
    Pratik

    in reply to: Logo centered over the header image #87933
    Pratik
    Member

    Hi @riccrom123,

    The effect will be the same in the boxed layout too. And if you want boxed layout, then you will need to of a lot of customization as it will need to be fixed in all responsive device CSS.

    If you change the html structure a bit, then it may be achievable, but for that, you need to hire a customizer as it will involve a bit of customization.

    Regards,
    Pratik

    in reply to: ul list #87932
    Pratik
    Member

    Hi @Jennifer,

    I did some research for you and that icon can be achieved using HTML entities. So use following code instead.

    
    .widget ul {
      list-style: none;
    }
    
    .widget li {
      text-indent: -15px;
    }
    
    .widget li:before {
      content: "\271D";
      padding-right: 5px;
    }
    

    This should work and overcome the obstacle on Wingdings not being web ready as it uses HTML entity instead of the symbol.

    Let me know how it goes.

    Regards,
    Pratik

    in reply to: Edit Meta-Tag for Affiliate-Program #87931
    Pratik
    Member

    Hi @jonny,

    You are welcome. If you like Catch Responsive theme and Catch Web Tools Plugin along with our support, then please give us your valuable review at https://wordpress.org/support/view/theme-reviews/catch-responsive and https://wordpress.org/support/view/plugin-reviews/catch-web-tools.

    Have a nice day.

    Regards,
    Pratik

    in reply to: ul list #87866
    Pratik
    Member

    Hi @Jennifer,

    You can use following CSS code in <b>Appearance-> Customize-> Theme Options -> Custom CSS</b> box:

    
    ul li {
        list-style-type: "✝";
    }
    

    Note: Specifying Wingdings 2 font is contrary to the published specifications, has never been a documented feature of HTML, is not reliable, and should not be done. Wingdings 2 is not available on all computers, and so the intended characters may not appear on computers running non-Microsoft operating systems such as Mac OS 9, Mac OS X 10 or Linux. The intended characters are also unlikely to appear when using a standards-compliant browser such as Firefox, Google Chrome, Netscape 6+, Opera 6+, Safari 3+ or SeaMonkey (formerly Mozilla). The same problems are found with the Webdings, Wingdings and Wingdings 3 fonts – they should not be used in Web pages.

    Regards,
    Pratik

    in reply to: Need Borders / Shadow Behind Page/Post #87865
    Pratik
    Member

    Hi @Shop43,

    2. To put borders around primary and secondary separately, use following code in Appearance=> Customize => Theme Options=> Custom CSS Styles box:

    
    /* For Main block */
    #primary {
        border: 2px solid #000000;
        border-top: none; /* Remove this if you want it in the top as well */
        border-radius: 5px;
    }
    
    /* For Sidebar */
    #secondary {
        border: 2px solid #000000;
        border-top: none; /* Remove this if you want it in the top as well */
        border-radius: 5px;
    }
    

    3. For this, use following code in Appearance=> Customize => Theme Options=> Custom CSS Styles box:

    
    .widget img {
        display: block;
        margin: 0 auto;
    }
    

    5. For social icons, I have provided you CSS Code: http://pastebin.com/cr16a4AT. Just add it in Appearance=> Customize => Theme Options=> Custom CSS Styles box and it will have the effect you desire.

    NOTE: You have made a mistake in your Custom CSS code. You are missing a } at the end. The Codes I provided will not work unless you fix it.

    in reply to: Custom sidebar content per page #87844
    Pratik
    Member

    Hi @Eddie,

    You can try the Jetpack Plugin‘s Widget visibility module. It will let you choose the option to make widget visible with conditions.

    Regards,
    Pratik

Viewing 20 posts - 1,641 through 1,660 (of 2,006 total)