Forum Replies Created

Viewing 20 posts - 1,721 through 1,740 (of 2,016 total)
  • Author
    Posts
  • in reply to: Custom Menu Link #86836
    Pratik
    Participant

    Hi @Jennifer,

    If you are using WordPress custom menu, then on the top of the Appearance=> Menu screen, there is a Screen Options Button. Once you click on that, you will see Show advanced menu properties. There, check the Link Target checkbox. Now, you should have Open link in a new tab option in your custom link.

    Please see this screenshot for more details: http://awesomescreenshot.com/06c5oqxv5a

    It has three steps mentioned in screenshot.

    Let me know if this is what you wanted.

    Regards,
    Pratik

    in reply to: Remove gray space at top of pages #86835
    Pratik
    Participant

    Hi @Michaela,

    Can you post in with a reference from a screenshot? I am missing the grey line that you are mentioning.

    Regards,
    Pratik

    in reply to: number of featured contents on homepage #86834
    Pratik
    Participant

    hi @pulsedata,

    For now, you can goto Appearance=> Theme Options => Featured Post Slider=> Number of Slides and set the desired number from there. Here, there should be no restriction.

    Regards,
    Pratik

    in reply to: Social Link Color #86394
    Pratik
    Participant

    Hi Husker,

    For that, you can add you can add this code in Appearance=> Customize=> Theme Options => Custom CSS box. You can filter out only the icons you need and add them too.

    Let me know if this works out or not.

    Regards,
    Pratik

    in reply to: Fatal Error on Allowed Memory size #86393
    Pratik
    Participant

    Hi @business901,
    These errors are mainly due to your allocated memory being exhausted. You can either contact your server to increase the size or follow this post to fix these issues.

    Once its done, you can update the theme.

    Also, try deactivating plugins one by one and see if problems persists as some plugins tend to hog all the memory and slow down the site.

    Regards,
    Pratik

    in reply to: Nice theme… but content text is a wee bit too small… #86392
    Pratik
    Participant

    Hi @k8cpa,

    Thank you for using Catch Base.

    To increase the font size of all the texts, you can add following CSS code in Appearance=> Customize=> Theme Options => Custom CSS box:

    
    body {
        font-size: 20px;
    }
    

    You can increase or decrease the 20px size as required.

    If this does not work, please let me know which sections you would like the font to be increased, and then I will provide you the code for those as well.

    Regards,
    Pratik

    in reply to: Feedburner on the social media widget. #86391
    Pratik
    Participant

    Hi @blogtunes,

    In Chicago theme, it is possible to add rss-feedburner link. Add it as other social media.

    If it does not work out, please post in your site url after addition of the link.

    Regards,
    Pratik

    in reply to: Search Console – Google issue #86390
    Pratik
    Participant

    Hi @nnicorescu,

    Can you check the demo for http://catchthemes.com/demo/clean-journal/ and see if it has same issues?

    1. Missing author:
    This usually happens when you have only one author in the site. Only one author means is will be useless to display authors. This is handled by default so just add a post with another author and it should go away. Can you verify if you have single or multiple author in site?

    2. Missing updated:
    The updated should be there by default. I checked your site and it is there. The display is hidden, and it is below the posted date.

    3. Missing Entry title:
    Again, this is present in your site.

    Can you recheck, maybe there are some caching issues? Let me know how it works out.

    Regards,
    Pratik

    in reply to: tags and categories on pages #86060
    Pratik
    Participant

    Hi @calmo16,

    – Translations: I don’t understand: what exactly and how do I have to edit in both functions.php and search.php?
    * You will need to change the texts in those functions to the one you want to show. E.g: You can change Older Posts to the text of language you want.

    – Concerning the menu bar in tablets:
    The menu items will go down on second row because there are many items on the menu. This is default behavior. The mobile menus will cone into effect on devices with width less than 991 px.

    – And can you tell why changing the font-size in the page header doesn’t work?
    This required me to view your site. Now I can give you CSS code. Add following code in Appearance=> Customize=> Theme Options => Custom CSS box:

    
    .page-header .page-title {
        font-size: 20px;
    }
    

    This should work now.

    Let me know if it does not work.

    Regards,
    Pratil

    in reply to: tags and categories on pages #85998
    Pratik
    Participant

    HI @calmo16,

    There is another way if you do not want to use po files. You can edit the theme functions. For that, you need to do some customization via child theme. For details about child theme, please visit this link.

    After adding the child theme, you need to do is add the function clean_box_content_nav() from parent theme’s functions.php to child theme and edit the texts in line 533 and 534 (for older and newer posts).

    For search results, you need to add search.php from your child theme to your parent theme and edit line 19.
    —————————————————————————————————————————————————————-
    For appearance of the menu bar on tablets and font size, please post in your site url and the device so that I can check it.

    Regards,
    Pratik

    in reply to: tags and categories on pages #85969
    Pratik
    Participant

    HI @calmo16,

    Another question: using tags and categories, the results are shown in a big white ‘beam’. Is it possible to make it smaller? And to change the font color, because it’s not very clear in the white?
    * For this, you can add following CSS code in Appearance=> Customize=> Theme Options => Custom CSS box:

    
    .page-header {
        color: #ff00dd;
        font-size: 15px;
        padding-top: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
        padding-left: 20px;
    }
    

    You can change the hex value of color attribute to change the text color.
    You can change the size of text by font-size attribute.
    You can change the values of each padding attribute to make the white beam large or small on each side.

    Also using Search: the search results are shown in this big white beam. How can I change size and color?
    * Same above code will work for search results too since they use same template and class.

    And it also would me nice to see whole posts (and not excerpts) as search results.
    * For this, you will need to do some customization via child theme. First, you need to make a child theme. For details on making child theme, please see this link. Then make a content.php file and add the codes here. This will make search results display whole post rather than excerpt.

    And how can i use other languages in ‘search results’) Can the text be changed in another language? And how do I change ‘older posts’ and ‘newer posts’ in another language?
    * This is possible. For this, you need to do it via the pot files. You need to copy the pot file and add a .po file with same template. For more details on translation, goto this link.

    Let me know if this works out or not.

    Regards,
    Pratik

    in reply to: Move Navigation Bar #85958
    Pratik
    Participant

    Hi @Catchemall,

    Margin works but might be disrupted on some devices. Please post in if you have further questions.

    Regards,
    Pratik

    in reply to: Move Navigation Bar #85898
    Pratik
    Participant

    Hi @Catchemail,
    If you want the menu under header image, you can do it by using child theme.

    Since you are already using the child theme, I will skip the part about creating it.

    Now add following code in you child theme’s functions.php:

    
    /*
     * Move primary menu below header image
     */
    function catchresponsive_move_primary_menu() {
        remove_action( 'catchresponsive_after_header', 'catchresponsive_primary_menu', 20 );
        add_action( 'catchresponsive_after_header', 'catchresponsive_primary_menu', 50 );
    }
    add_action( 'init', 'catchresponsive_move_primary_menu' );
    

    Please remove any custom css you have added.

    Let me know if this works out or not,

    Regards,
    Pratik

    in reply to: Move Navigation Bar #85897
    Pratik
    Participant

    Ignore this reply and view the one below this.

    in reply to: Purchase Pro Question #85896
    Pratik
    Participant

    Hi @husker,

    If you do not want to renew each year going forward, you will be able to use the theme but will not receive the updates once the subscription expires.

    Regards,
    Pratik

    in reply to: Header Text not displaying properly #85895
    Pratik
    Participant

    hi @corkiesmom,

    Please post in your site url so I can check it.

    Regards,
    Pratil

    in reply to: tags and categories on pages #85894
    Pratik
    Participant

    Hi @calmo16,

    1. There is a way but you will need to dig into the codes and need to have quite a bit on knowledge about how categories and tags works on WordPress in code level.

    2. That can be achieved too. But again, need some knowledge about Templates Hierarchy of WordPress. You can view this link which describes how to add layouts for different category types.

    3. The link in point 2 explains this pretty well.

    4. To get rid of date and author in Clean Box Theme, you can add following CSS code in Appearance=> Customize=> Theme Options => Custom CSS box:

    
    header.entry-header .entry-meta {
        display: none;
    }
    

    This will remove it in both blog page and single page.

    Regards,
    Pratik

    in reply to: Center Post Title and Menu Bar #85893
    Pratik
    Participant

    Hi @lygiahuan,
    1. To center the menu, do you want the whole menu to just center leaving equal space on the left and right or do you want to even out the menus in css each item taking equal space?

    2. to Center the Title in single post titles only, you can add following CSS code in Appearance=> Customize=> Theme Options => Custom CSS box:

    
    .single-post #main #content .post h2.entry-title {
        text-align: center;
    }
    

    Regards,
    Pratik

    in reply to: Footer Menu Font Size #85692
    Pratik
    Participant

    Hi @ShoreBeing,

    The reason for this is the menu name is different in those sites. Use following CSS and it should work for all:

    
    .nav-footer .catchresponsive-nav-menu a {
        font-size: 25px; /* Increase or decrease 25 to desired number */
        font-weight: bold; /* Remove this line to remove bold effect */
    }
    

    This should work on all sites. Let me know if are issues in other sites.

    Note: http://www.shorefit.co.uk/ gave me forbidden error.

    Regards,
    Pratik

    in reply to: Remove search bar from header #85540
    Pratik
    Participant

    Hi @yogawithagnes,

    Thank you for your valuable review. Have a nice day.

    Regards,
    Pratik

Viewing 20 posts - 1,721 through 1,740 (of 2,016 total)