Forum Replies Created

Viewing 20 posts - 4,141 through 4,160 (of 4,908 total)
  • Author
    Posts
  • in reply to: Cannot install Simple Catch Pro version 3.3 #87506
    Mahesh
    Participant

    @rflores: That’s great. Have a nice day!

    Regards,
    Mahesh

    Mahesh
    Participant

    @karbasetti: The update should not be making any changes to the database. I checked it on our server and didn’t face any issue like you’ve mentioned. Does it revert everything to default or just the Featured Content section?

    Regards,
    Mahesh

    in reply to: Line height #87504
    Mahesh
    Participant

    @sbartch: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Center Menu Bar #87503
    Mahesh
    Participant

    @lygiahuan: Glad you made it work out. Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Change menu colors? #87502
    Mahesh
    Participant

    @abhishek1975: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Images in Portrait IPhone and Ipad Mode #87501
    Mahesh
    Participant

    @husker: Its kind of a strange issue. And is only seem to be visible in iphone portrait version. We are working on it. We’ll let you know once its fixed.

    Regards,
    Mahesh

    in reply to: hide title #87499
    Mahesh
    Participant

    @katonov: Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS”
    1. If you want to hide entry-title on given page only:

    .page #content article.page.post-13 .entry-header {
        display: none;
    }

    2. If you want to hide entry-title on entire page of you site:

    .page #content article.page .entry-header {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: Small dots in Slider #87498
    Mahesh
    Participant

    @arnold: Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:

    #feature-slider .cycle-pager {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: Change width of center text box #87497
    Mahesh
    Participant

    @barb: You’re using one-column no sidebar layout so, the width of the content seem bit smaller. You can use other layouts i.e. sidebar-left or sidebar-right. Or if you prefer to use full-width with no sidebar layout, I recommend you to upgrade to pro version.
    But if you want to change the view in free version itself, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:

    .one-column .site {
        width: 1000px;
    }
    
    @media screen and (max-width: 1024px) {
        .one-column .site {
            width: 960px;
        }
    }
    
    @media screen and (max-width: 990px) {
        .one-column .site {
            width: 910px;
        }
    }
    
    @media screen and (max-width: 960px) {
        .one-column .site {
            width: 720px;
        }
    }
    
    @media screen and (max-width: 767px) {
        .site, .one-column .site {
            width: 600px;
        }
    }
    
    @media screen and (max-width: 640px) {
        .site, .one-column .site {
            width: 460px;
        }
    }
    
    @media screen and (max-width: 479px) {
        .site, .one-column .site {
            width: 100%;
        }
    }

    Regards,
    Mahesh

    in reply to: CHANGE HOMEPAGE URL #87448
    Mahesh
    Participant

    @[email protected]: By link in custom menu, in your site’s current menu you have My Dream Life with link http://mydreamlife.me/, I meant to change this. But what you need is way more different than this. I think you’ll need to htaccess redirect or server level support as it falls beyond theme support scope.

    Regards,
    Mahesh

    in reply to: CHANGE HOMEPAGE URL #87441
    Mahesh
    Participant

    @hollyehrocketmail-com: I’m afraid this is not possible, only the link in custom menu can be edited/customized.

    Regards,
    Mahesh

    in reply to: have no date on some blog posts #87434
    Mahesh
    Participant

    @holleyhrocketmail-com: Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add any of the following CSS as required:
    For Blog List Page
    1. For disabling posted date from all posts:

    .blog #content .post .entry-meta {
        display: none;
    }

    2. For disabling posted date from selected posts(Hides post date from post titled Lucid Dreaming):

    .blog #content .post.post-2925 .entry-meta {
        display: none;
    }

    For Blog Single Page
    1. For disabling posted date from all single page posts (Entire site):

    .single #content .post .posted-on {
        display: none;
    }

    2. For disabling posted date from selected single page posts(Hides post date from post titled Lucid Dreaming):

    .single #content .post.post-2925 .posted-on {
        display: none;
    }

    Let me know if any trouble.

    Regards,
    Mahesh

    in reply to: CHANGE HOMEPAGE URL #87432
    Mahesh
    Participant

    @hollyehrocketmail-com: Do you mean to change the home url in menu. If you have used the default page menu, then home page should link to your default site URL. If you want to user custom links for home, then you will need to create custom links.
    Details for this is here: https://codex.wordpress.org/WordPress_Menu_User_Guide
    Let me know if this is what you wanted.

    Regards,
    Mahesh

    in reply to: Change menu colors? #87431
    Mahesh
    Participant

    @abhishek1975: Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:

    #secondary-menu {
        background-color: #dd9221;
    }

    Regards,
    Mahesh

    in reply to: Images in Portrait IPhone and Ipad Mode #87428
    Mahesh
    Participant

    @husker: I don’t know why but padding in <td> tag is causing the issue, using following CSS fixed the issue for you test-image page:

    table td:nth-child(4n+4), table td:nth-child(4n+1) {
    	width: 40%;
    }

    Let me know if this helps.

    Regards,
    Mahesh

    in reply to: Images in Portrait IPhone and Ipad Mode #87424
    Mahesh
    Participant

    @husker: You are using image with different sizes that is why you are facing the issue. Please use the images with same resolutions in the table.

    Regards,
    Mahesh

    in reply to: Remove search bar #87423
    Mahesh
    Participant

    @shawzepe: Sorry for making you repost you site url. Checked your site, and seems the search bar in your site is not the default theme’s search bar. Have you customized the theme and added some code to display the search bar? if yes, you have to remove it. You have already hidden the default search bar of the theme with Custom CSS.
    Let me know further.

    Regards,
    Mahesh

    in reply to: Primary menu holds less text than in the non-Pro theme #87422
    Mahesh
    Participant

    @zhpvwebmaster: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Front page post problem #87421
    Mahesh
    Participant

    @sziszi: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Menu Bar, Footer, Posts Changing Colors #87420
    Mahesh
    Participant

    @matthewseanmclachlan: You are missing a closing brace at the end of your Custom CSS.
    1. To turn off transparency on header top you can change your existing code in Custom CSS:

    #header-top { 
    	background: #ea3b36;
    	background: rgba(234, 53, 54, 0.7);
    	box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
    	-moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5); 
    	-webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
    	position: fixed;
    	z-index: 99; 
    }

    to the following:

    #header-top { 
    	background: #ea3b36;
    	background: rgba(234, 53, 54, 1);
    	box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
    	-moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5); 
    	-webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
    	position: fixed;
    	z-index: 99; 
    }

    2. Making only white part transparent in post:
    For semi-transparent

    .post.post-32 {
        background: rgba(255, 255, 255, 0.5);
    }

    OR for fully transparent:

    .post.post-32 {
        background: rgba(255, 255, 255, 0);
    }

    3. Making only white part transparent in footer:

    #site-generator {
        background: rgba(255, 255, 255, 0.5);
    }
    #colophon {
        background-color: transparent;
    }

    Note: For full transparency, change the last attribute 0.5 to 0 in background as in number 2.
    Let me know if any problem.

    Regards,
    Mahesh

Viewing 20 posts - 4,141 through 4,160 (of 4,908 total)