Forum Replies Created

Viewing 20 posts - 6,361 through 6,380 (of 14,497 total)
  • Author
    Posts
  • in reply to: Homepage slider #44043
    Sakin
    Keymaster

    @lanretobi: That footer editor is not there in Free version for this you need to upgrade to pro version where you have get Footer Editor option in your Theme Options panel.

    in reply to: Homepage slider #44034
    Sakin
    Keymaster

    @lanretobi: Don’t remove the site title an tagline. It is not good for SEO. So, add it back but you can hide it by adding in the following css in “Appearance => Theme Options => Custom CSS” box.
    #hgroup-wrap { display: none; }

    in reply to: some questions #44032
    Sakin
    Keymaster

    @mindiapolis: You can go to “Appearance => Widgets” and add “1. Adventurous: Social” widgets to the Footer Area One or Footer Area two or footer area three as per your need.

    By the way where did you add your Facebook URL. You need to add it in “Appearance => Theme Options => Social Icons”

    in reply to: Put Date above post title and change font size #44031
    Sakin
    Keymaster

    @Kim: There is no option to move the date above the first post title. So, for this you need to hire customizer to customize it for you.

    For date font size, you can increase the font size in the following CSS and then add it in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (min-width: 768px) {
        .entry-meta { font-size: 12px; }
    }
    in reply to: Lines above posts #44029
    Sakin
    Keymaster

    @Kim:
    1. The grey line above your first post on Homepage is from Slider. So, go to “Appearance => Theme Options => Featured Slider => Slider Options” and select “Disable” in Enable Sidebar. This will remove all the slider code and the grey line.

    2. For border bottom in all posts, you can add the following css in “Appearance => Theme Options => Custom CSS” box.
    .hentry { border-bottom: 2px solid #ccc; }

    in reply to: HELP! Header Navigation… #44026
    Sakin
    Keymaster

    @Kim: I check in your site and new logo image at http://hidemyage.com/wp-content/uploads/cropped-HIDEMYAGENOTMYBEAUTYFINAL3.jpg . Your image has more white space in bottom then it top. This is the issue with the unevenness.

    in reply to: Homepage slider #44010
    Sakin
    Keymaster

    @lanretobi: For these spaces, you can reduce the padding-top and padding-bottom as per your need in the following css and then add it in “Appearance => Theme Options => Custom CSS” box.

    #hgroup { padding-top: 40px; }
    #hgroup-wrap { padding-bottom: 40px; }
    in reply to: Homepage slider #44003
    Sakin
    Keymaster

    @lanretobi: Thanks for your access and I was able to find the issue in your site. This was issue of your post status as “Private”.

    Your post were set as private so when you login to your WordPress and view the site, the slider was working. Then when you logout and view the site, the slider was not working as the only one post was public while other 3 posts were private. Now, I changed all 3 posts to public and will work with our without login.

    in reply to: Homepage slider #43997
    Sakin
    Keymaster

    @lanretobi: It is just showing one slider text and image. So, can you update and check in. I will also email you to check in admin section of your site.

    in reply to: Homepage slider #43994
    Sakin
    Keymaster

    @lanretobi: Please don’t change after it stopped as I need to check in. I was asking you to inform me after it stops. For change log you can refer to http://catchthemes.com/changelogs/catch-everest-theme/

    in reply to: Homepage slider #43990
    Sakin
    Keymaster

    @lanretobi: It’s strange. I also see that you are using old version of Catch Everest Theme. Can you update it to latest version. Then please buzz me when it stops again. Then I will check in.

    in reply to: Change font color primary menu #43989
    Sakin
    Keymaster

    Hello Sierk,

    Details Color Option for Menu are there in Catch Evolution Pro theme. So, the best option will be to upgrade to pro version and use the color picker option at theme options panel to change the color and enjoy the other additional features. For more details check out http://catchthemes.com/theme-instructions/catch-evolution-pro/.

    But in free theme, we need to do manually by adding color css in “Appearance => Theme Options => Custom CSS” box. For example, you can change the color code as per your need in the following css and then add it in Custom CSS box.
    #header-menu ul.menu a { color: #eee; }

    Regards,
    Sakin

    in reply to: Duplicate Homepage-Message #43986
    Sakin
    Keymaster

    @Tony: Yes there is not option to do that. So, you need to add widget to Header Top Sidebar. Go to “Appearance => Widgets” and then drag and drop “Text” Widget to Header Top Sidebar. You can write anything in your Text widget and it will show at the top of every page.

    in reply to: Google Ads customization #43984
    Sakin
    Keymaster

    @Michaela: You need to add main to overwrite the css from responsive.css file.

    in reply to: Homepage slider #43983
    Sakin
    Keymaster

    @lanretobi: Did you fixed it? Your slider is working fine. It will start sliding after it loads the content.

    in reply to: Google Ads customization #43952
    Sakin
    Keymaster

    Hi Michaela,

    It was not working as you were adding css in your child theme style.css and not in Custom CSS box.

    If you are using it in child theme style.css then you need to have priority. So, I have added #main before. See this

    #main #primary { width: 900px; }
    #main #secondary { width: 240px; }
    @media screen and (max-width: 1344px) {
    	#main #primary { width: 840px; }
    	#main #secondary { width: 240px; }
    }
    @media screen and (max-width: 1280px) {
    	#main #primary { width: 770px; }		
    	#main #secondary { width: 220px; }	
    }
    @media screen and (max-width: 1152px) {
    	#main #primary { width: 690px; }		
    	#main #secondary { width: 200px; }
    }	
    @media screen and (max-width: 1024px) {
    	#main #primary { width: 630px; }		
    	#main #secondary { width: 200px; }	
    }
    @media screen and (max-width: 960px) {	
    	#main #primary, #main #secondary { width: 100%; }
    }

    Regards,
    Sakin

    in reply to: Change hover colour sub-menu #43949
    Sakin
    Keymaster

    Hi Richard,

    Some css in overwriting it. So, can you replace my previous css with the following and check in.

    #header-menu #access ul.menu .sub-menu li a:hover,
    #header-menu #access ul.menu .sub-menu li a:focus,
    #header-menu #access ul.menu .children li a:hover,
    #header-menu #access ul.menu .children li a:focus {
    	background: #e5e5e5; /* Show a solid color for older browsers */
    	background: -moz-linear-gradient(#f9f9f9, #e5e5e5);
    	background: -o-linear-gradient(#f9f9f9, #e5e5e5);
    	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f9f9f9), to(#e5e5e5)); /* Older webkit syntax */
    	background: -webkit-linear-gradient(#f9f9f9, #e5e5e5);
    	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e5e5e5'); /* for IE */
    	color: #373737;
    }

    Regards,
    Sakin

    in reply to: No way to download updated zip file #43948
    Sakin
    Keymaster

    @prius4f: Really sorry for this as there was issue with renewal. Whenever, you have issue, just post in and we will solve it asap.

    in reply to: Photo Frame #43946
    Sakin
    Keymaster

    @Irina: Yes sure. You can add the following css in “Appearance => Theme Options => Custom CSS” box.

    .wp-caption .wp-caption-text:before {
        content: none;
    }
    .wp-caption .wp-caption-text {
        padding-left: 0;
        text-align: center;
    }
    in reply to: Homepage slider #43945
    Sakin
    Keymaster

    Hi Simona,

    Catch Everest Pro theme doesn’t have option to use full width slider. You might consider using Adventurous Pro or Catch Evolution Pro. Adventurous Pro has default full width slider but in Catch Evolution Pro, we can simple adjust one css and it will be full width slider. But with Catch Everest Pro, you need to change a lot. So, for catch everest pro, you might need to consider hiring customizer http://catchthemes.com/hire-customizer/

    Regards,
    Sakin

Viewing 20 posts - 6,361 through 6,380 (of 14,497 total)