Forum Replies Created

Viewing 20 posts - 7,421 through 7,440 (of 14,497 total)
  • Author
    Posts
  • in reply to: Two problems… #32701
    Sakin
    Keymaster

    @AKMARK5000: Catch Evolution latest version is 2.2 so just ignore that message. I think you have one of our other themes install there as well. So, it is showing that. We are working on new theme option function which will fix this issue.

    in reply to: separation between boxes #32700
    Sakin
    Keymaster

    @Sevian: That is bit complicated. For your site http://veogangas.com/, I see that you have added previous css which changed all the widget into white. If you don’t want that, then remove that css. For the width you can increase the width as per your need in the following css and add it in “Appearance => Theme Options => Custom CSS” box.

    /* For Large Screen */
    #primary {
    	width: 754px;
    }
    #secondary {
        width: 406px;
    }
    /* For other responsive screens */
    @media screen and (max-width: 1224px) {
    	#primary {
    		width: 654px;
    	}
    	#secondary {
    		width: 340px;
    	}	
    }
    @media screen and (max-width: 1060px) {		
    	#primary {
    		width: 530px;
    	}
    	#secondary {
    		width: 340px;
    	}		
    }
    /* iPads (landscape) ----------- */
    @media only screen 
    and (min-device-width : 768px) 
    and (max-device-width : 1024px) 
    and (orientation : landscape) {
    	#primary {
    		width: 590px;
    	}
    	#secondary {
    		width: 340px;
    	}	
    }
    @media screen and (max-width: 960px) {	
    	#primary,
    	#secondary {
    		width: 100%;
    	}
    }
    in reply to: Catch Box Pro not reproducing correctly on Android #32699
    Sakin
    Keymaster

    @luismarioochoa: In this site http://bloomrestaurant.com/ , you have disable Responsive design to the menu will look small in mobile devices. For sub-menu you can try adding in aria-haspopup script in “Code to display on Footer” at “Appearance => Theme Options => Webmaster Tools => Header and Footer Code”

    jQuery(document).ready(function () {
    	jQuery(".page_item").has("ul").children("a").attr("aria-haspopup", "true");
    });

    In this site http://luismario.com/ , you don’t have header in Desktop version so how you will have it in mobile version.

    in reply to: Change site language #32698
    Sakin
    Keymaster

    @ram: you need to edit your wp-config.php file and change the language code as
    define('WPLANG', 'it_IT');

    in reply to: Insert logo instead of title #32696
    Sakin
    Keymaster

    @bobmacoy: WordPress 3.3.1 is very old version. try upgrading to latest version WordPress 3.9.1. For this header to work, you need at least WordPress 3.4.

    in reply to: blanc line, new paragraph in onordered list #32695
    Sakin
    Keymaster

    Hi Anouk,

    I am but confused with your question. When you add in unordered list item then you will have dot and if you just add normal paragraph text then you will have normal paragraph without dot. Also you will have break if you add in paragraph text in order list. So, what is the problem here.

    Regards,
    Sakin

    in reply to: Still cannot change some of the homepage colors #32694
    Sakin
    Keymaster

    @Janet:

    1. I don’t understand why it is not working for you when it’s working on here. There is two option one is “Footer Background Sidebar Color” which will change the background of Footer Areas and another is “Footer Background Color” which will change the background of Footer Site Copyright area background. Ok and if you cannot find then you can add the following css in “Appearance => Theme Options => Custom CSS” box.
    #site-generator { background-color: #d5d3b8; }

    2. This is bit confusing. Can you share screenshot of what you want. I already told you that the menu come down due to header header image and Site Details Text. So, one option will be to either remove the Header Text or mode the header text down by adding in the following css in “Appearance => Theme Options => Custom CSS” box.

    #hgroup.logo-enable.logo-left {
        padding-left: 0;
        padding-top: 10px;
    }
    #site-title {
        font-size: 24px;
        font-size: 2.4rem;
    }

    Or you will only to able to reduce the gap between the menu and your header by little bit. If so then you can just add the following css in “Appearance => Theme Options => Custom CSS” box.

    #header-right {
        padding-top: 0;
    }

    3. You can change this from “Appearance => Theme Options => Color Options => Site Color Options” and change the color for “Homepage Headline Color”

    4. For the homepage Headline Button background color, you can change the color code in the following css and add it in “Appearance => Theme Options => Custom CSS” box.

    #homepage-message .right-section a {
        background-color: #9bc23c;
    } 
    #homepage-message .right-section a:hover {
        background-color: #87ae28;
    }
    in reply to: Insert logo instead of title #32565
    Sakin
    Keymaster

    @bobmacoy: Can you send me your site URL?

    in reply to: Insert logo instead of title #32559
    Sakin
    Keymaster

    @bobmacoy: Once you activate Catch Box Free theme, you will get “Appearance => Header”.

    in reply to: Editing entry meta in footer of post only #32558
    Sakin
    Keymaster

    @pennsavage: Yes, you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .entry-meta { text-align: center; }

    in reply to: Removing the Social Sharing Icons #32557
    Sakin
    Keymaster

    @pennsavage: Nice you got it.

    in reply to: Theme Border Reduction #32555
    Sakin
    Keymaster

    @AKMARK5000: Oh you mean to increase the width of the site. Yes, Catch Evolution Pro is alternate for large screen.

    in reply to: Theme Border Reduction #32541
    Sakin
    Keymaster

    @AKMARK5000: The CSS that I gave you have reduce the grey area. So you mean to remove it completely. I am confused.

    in reply to: Insert logo instead of title #32518
    Sakin
    Keymaster

    @bobmacoy: Which theme are you using it. You have posted in Catch Box Free Theme forum and yes if you have activate Catch Box theme then you will have that Header.

    in reply to: separation between boxes #32517
    Sakin
    Keymaster

    @Sevian: Removing that will make the site look odd. As we need some gap between this. But yes you can make it whole white so it doesn’t look like gap

    #main .wrapper { background-color: #fff; }
    #secondary .widget { border: none; }

    So bit confused…

    in reply to: Navigation bar empty tab #32514
    Sakin
    Keymaster

    @Onyinye: Oh Sorry this is not the way we design so it’s but complicated and if you want that then you need to consider hiring customizer.

    But I have one option, that is simply remove the border and center the menu by adding in the following css in “Appearance => Theme Options => Custom CSS”

    #access ul { text-align: center; }
    #access ul li { border: none; display: inline-block; float: none;}
    #access ul li a { display: block; float: none;  }
    #access ul li ul li { 
    display: block; float: left; 
    text-align: left; width: 100%; 
    }
    #access ul li.default-menu { display: none; }
    #access ul.sb-options li { text-align: left; }
    in reply to: Reduce and remove empty space #32513
    Sakin
    Keymaster

    @kk078914: Thanks you found it. It’s a strange plugin when it needs to add whole bootstrap css. Strange.

    in reply to: Reduce and remove empty space #32511
    Sakin
    Keymaster

    @kk078914: I also don’t know about that. Maybe it come from one of your plugins. Try checking in by disabling your plugin one by one.

    in reply to: How to hide page title on Home Page #32502
    Sakin
    Keymaster

    @dfwrgjeff: Yes, I found issue in your custom css where you miss closing } after your following css.

    #secondary-menu ul.menu {
    list-style: none;
    text-align: left;

    This needs to be like following:

    #secondary-menu ul.menu {
    list-style: none;
    text-align: left;
    }

    Then you can add the code that I gave you.
    .page .entry-header { display: none; }

    in reply to: Removing the Social Sharing Icons #32500
    Sakin
    Keymaster

    @pennsavage: But the color ones are from Sharethis script and we haven’t added this our theme. Who did this site for your. Looks like he/she have added that script in your site. So, we cannot do anything to remove that. So, search for that customize code. Looks like you have that code in content-single.php file. Compare you code with http://themes.svn.wordpress.org/catch-evolution/1.8.2/content-single.php file.

    If you cannot find it then you need to delete your customized theme and install the fresh one. We only have social icons in that you have in Header Right Sidebar. Not on any post for share.

Viewing 20 posts - 7,421 through 7,440 (of 14,497 total)