Forum Replies Created

Viewing 20 posts - 2,501 through 2,520 (of 4,903 total)
  • Author
    Posts
  • in reply to: Different Header Image based on screen size? #101015
    Mahesh
    Participant

    @nschoeggl: I’m afraid this is not possible.
    how can I turn off social media icons/search box mobile devices
    Please post in your site url so I can help you further.

    Regards,
    Mahesh

    in reply to: Multiple buttons on first page #101014
    Mahesh
    Participant

    @fredericf: Yes, this is possible. You’ll need to create a child theme for this. You can find more details on creating child theme HERE. Then in your child theme override the following function:

    function studio_site_title_description() {
    	?>
    	<div id="site-header">
    		<h1 class="site-title">
    			<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
    				<?php bloginfo( 'name' ); ?>
    			</a>
    		</h1>
    		<?php 
    		//Display blog description / site tagline
    		$blogdescription = get_bloginfo( 'description' );
    
    		if ( '' != $blogdescription ) { ?>
    			<h2 class="site-description">
    				<?php echo $blogdescription; ?>
    			</h2>
    		<?php 	} ?>
    	</div><!-- #site-header -->	
    	<?php
    }

    Hope you understand.

    Regards,
    Mahesh

    in reply to: How to set max width for content? #101010
    Mahesh
    Participant

    @fredericf: Yes sure. Have a nice day!

    Regards,
    Mahesh

    in reply to: How to get my site to look like demo? #101007
    Mahesh
    Participant

    @chi: You are welcome. Have a nice day!

    Regards,
    Mahesh

    in reply to: How to get my site to look like demo? #100998
    Mahesh
    Participant

    @chi: Free version has limited features. You’ll need to add page with featured image and then select that page. And then the image set as featured image will be displayed as Featured Image, Slider etc. For custom images, I recommend you to upgrade to Pro version.

    Regards,
    Mahesh

    in reply to: How to set max width for content? #100997
    Mahesh
    Participant

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

    .no-sidebar-full-width .container {
        max-width: 980px;
    }

    Regards,
    Mahesh

    in reply to: Primary Menu always show as mobile menu #100995
    Mahesh
    Participant

    @paud: This can be done with Custom CSS. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .mobile-menu, 
    .mobile-menu-anchor {
        display: block;
    }

    If you want to hide the primary menu on desktop add the following CSS:

    .menu.catchbase-nav-menu {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: How to get my site to look like demo? #100994
    Mahesh
    Participant

    @chi: The features in the theme are disabled by default. If you want to have similar look as of the demo. Go to Dashboard=> Appearance=> Customize:
    => Header Highlight Content and select Homepage/Frontpage or Entire Site in Enable Header Highlight Content on.
    Do the same for Featured Slider, Featured Content and News Ticker and you are good to go.
    Let me know if any problem.

    Note: Please skip the reply on the other thread.

    Regards,
    Mahesh

    in reply to: how to add text to the site branding area. #100993
    Mahesh
    Participant

    @START76: Please post in your site url.

    Regards,
    Mahesh

    in reply to: Change previous/next order #100992
    Mahesh
    Participant

    @klikblik: The post order is by date, you can check this in the blog list page. Are you using any plugin for the events. Seems the plugin is putting the events based on id.

    Regards,
    Mahesh

    in reply to: Same display on IE 11 and Firefox #100991
    Mahesh
    Participant

    @micwilly: Have you customized the theme / CSS. Does the problem occur on demo too? Let me know furhter.

    Regards,
    Mahesh

    in reply to: Sub-menu in navigation #100990
    Mahesh
    Participant

    @brandonsm: Please refer to the link below. Hope this helps. Let me know if any problem.
    https://codex.wordpress.org/WordPress_Menu_User_Guide

    Regards,
    Mahesh

    in reply to: adding a button #100989
    Mahesh
    Participant

    @aportbg: You can simply do this by adding a Text Widget. Let me know further.

    Regards,
    Mahesh

    in reply to: initial set up of template is not like the demo #100987
    Mahesh
    Participant

    @chi: Please post the problem in the correct Thread. You are using Clean Magazine, this is Wen Business Pro theme’s thread.
    The features in the theme are disabled by default. If you want to have similar look as of the demo. Go to Dashboard=> Appearance=> Customize:
    => Header Highlight Content
    and select Homepage/Frontpage or Entire Site in Enable Header Highlight Content on.
    Do the same for Featured Slider, Featured Content and News Ticker and you are good to go.
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Option Sidebar Position #100986
    Mahesh
    Participant

    @nikibranting: Please try disabling plugin you are using and check if it resolves the issue. If not, try activating the Parent theme and check if it works or not. Let me know further.

    Regards,
    Mahesh

    in reply to: full image not displayed after clicking slider #100985
    Mahesh
    Participant

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

    Regards,
    Mahesh

    in reply to: Change portfolio color #100984
    Mahesh
    Participant

    @ourherbfarm: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the follwoing CSS:

    #portfolio .hentry .entry-title a {
        color: #ff00ff;
    }

    Note: This will change the color of the Portfolio Title link.
    The small text in portfolio (meta tags), these are only available if you select Post Portfolio/Category
    If you want to change the color of the content, add the following CSS:

    #portfolio .hentry .entry-content {
        color: #ff00ff;
    }

    Note: Please change the color as desired.

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Add additional font #100983
    Mahesh
    Participant

    @ourherbfarm: Please use the following CSS instead:

    @font-face {
        font-family: 'neucharegular';
        src: url('http://ourherbfarm.com/css/neucha-webfont.eot');
        src: url('http://ourherbfarm.com/css/neucha-webfont.eot?#iefix') format('embedded-opentype'),
             url('http://ourherbfarm.com/css/neucha-webfont.woff') format('woff'),
             url('http://ourherbfarm.com/css/neucha-webfont.ttf') format('truetype'),
             url('http://ourherbfarm.com/css/neucha-webfont.svg#neucharegular') format('svg');
    }
    
    .entry-title {
        font-family: 'neucharegular';
    }

    Note: This is for titles just for testing, please change as you desire.

    Regards,
    Mahesh

    in reply to: Removing grey line after post #100982
    Mahesh
    Participant

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

    Regards,
    Mahesh

    in reply to: Content too far below site title #100981
    Mahesh
    Participant

    @jhgtyre: Glad to know that. Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

Viewing 20 posts - 2,501 through 2,520 (of 4,903 total)