Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #101001
    FredericF
    Participant

    Hi,

    I am looking at the demo. There is one central “button” that says “STUDIO PRO, Responsive…”.

    Is it possible to have 4 buttons like this, on top of each other?

    Thanks,
    Frédéric

    #101014
    Mahesh
    Keymaster

    @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

    #103611
    FredericF
    Participant

    Yes, I do understand… after looking around quite a bit..!

    Thank you very much for your answer.

    Frederic

    #103622
    Mahesh
    Keymaster

    @fredericf: Thank you for you appreciation. Let me know if any problem. Have a nice day!

    Regards,
    Mahesh

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Multiple buttons on first page’ is closed to new replies.