Forum Replies Created

Viewing 15 replies - 301 through 315 (of 342 total)
  • Forum: Themes and Templates
    In reply to: No menu bar
    Thread Starter satimis

    (@satimis)

    Hi esmi,

    I already have following lines on child theme’s header.php

    ....
    <a href="<?php echo esc_url( home_url( '/' ) ); ?>">
    <div id="cimy_div_id_0"><Loading images.../div>
    <div class="cimy_div_id_0_caption"></div>
    ....

    Deleting “Loading images…” makes no difference. Still header’s images couldn’t be displayed.

    Rgds
    satimis

    Forum: Themes and Templates
    In reply to: No menu bar
    Thread Starter satimis

    (@satimis)

    Hi esmi,

    Tried again on satimis-03.satimis.com

    Steps performed as follows;
    Activate twentytwelve
    Create twentytwelve-child folder
    Create /twentytwelve-child/style.css with following content on the fild;

    /*
    Theme Name:     Twenty Twelve Child
    Theme URI:      https://piano-03.satimis.com/
    Description:    Child theme for the Twenty Twelve theme
    Template:       twentytwelve
    Version:        0.1.0
    */
    @import url("../twentytwelve/style.css");

    -> Settings -> Cimy Header Image Rotator
    upload 4 pictures size 960 x 250

    (check) Plug=in’s uploaded (4 pictures)
    Border 0
    Width 960
    Height 250
    Fade effect 1
    -> Save Changes

    Copy following code in your theme where you want image rotation:

    <div id="cimy_div_id_0">Loading images...</div>
    <div class="cimy_div_id_0_caption"></div>
    <style type="text/css">
    	#cimy_div_id_0 {
    		float: left;
    		margin: 1em auto;
    		border: 0px solid #000000;
    		width: 960px;
    		height: 250px;
    	}
    	div.cimy_div_id_0_caption {
    		position: absolute;
    		margin-top: 175px;
    		margin-left: -75px;
    		width: 150px;
    		text-align: center;
    		left: 50%;
    		padding: 5px 10px;
    		background: black;
    		color: white;
    		font-family: sans-serif;
    		border-radius: 10px;
    		display: none;
    		z-index: 2;
    	}
    </style>
    <noscript>
    	<div id="cimy_div_id_0_nojs">
    		<img id="cimy_img_id" src="https://piano-03.satimis.com/wp-content/Cimy_Header_Images/0/chrysanthemum_n_Tulip_Garden_1000x288_960x250.png" alt="" />
    	</div>
    </noscript>

    On line (50) of /twentytwelve-child/header.php delete

    <img src="<?php echo esc_url( $header_image ); ?>" class="header-image" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" />

    Paste above lines on “Copy following code in your theme where you want image rotation:”
    -> Save

    – > Appearance -> Themes
    Activate Twenty Twelve Child

    No header image displayed. Please help.

    Thanks

    Rgds
    satimis

    Forum: Themes and Templates
    In reply to: No menu bar
    Thread Starter satimis

    (@satimis)

    Hi WPyogi,

    It is true. On searching I found some folks also encountering problem making Cimy Header Image Rotator to work on Twenty Twelve Theme. Therefore I dropped my test and now come back to Twenty Eleven Theme.

    Rgds
    satimis

    Forum: Themes and Templates
    In reply to: No menu bar
    Thread Starter satimis

    (@satimis)

    Hi,

    I only modified header.php on twentytwelve-child and the latter has been activated already.

    Tried again;
    -Activated twentytwelve
    -Activated twentytwelve-child again

    The navigation menu bar comes back but header disappeared.

    Looked at Settings -> Cimy Header Image Rotator
    All header images found there.

    How to fix it? Thanks in advance

    Edit:
    Whether add follows on style.css under twentytwelve-child? Not header.php;

    <div id="main">
     *
     * @package WordPress
     * @subpackage Twenty_Twelve
     * @since Twenty Twelve 1.0
     */
    ?><!DOCTYPE html>
    <!--[if IE 7]>
    <html class="ie ie7" <?php language_attributes(); ?>>
    <![endif]-->
    <!--[if IE 8]>
    <html class="ie ie8" <?php language_attributes(); ?>>
    <![endif]-->
    <!--[if !(IE 7) | !(IE 8)  ]><!-->
    <html <?php language_attributes(); ?>>
    <!--<![endif]-->
    <head>
    <meta charset="<?php bloginfo( 'charset' ); ?>" />
    <meta name="viewport" content="width=device-width" />
    <title><?php wp_title( '|', true, 'right' ); ?></title>
    <link rel="profile" href="https://gmpg.org/xfn/11" />
    <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
    <?php // Loads HTML5 JavaScript file to add support for HTML5 elements in older IE versions. ?>
    <!--[if lt IE 9]>
    <script src="<?php echo get_template_directory_uri(); ?>/js/html5.js" type="text/javascript"></script>
    <![endif]-->
    <?php wp_head(); ?>
    </head>
    
    <body <?php body_class(); ?>>
    <div id="page" class="hfeed site">
    	<header id="masthead" class="site-header" role="banner">
    		<hgroup>
    			<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
    			<h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
    		</hgroup>
    
    		<nav id="site-navigation" class="main-navigation" role="navigation">
    			<h3 class="menu-toggle"><?php _e( 'Menu', 'twentytwelve' ); ?></h3>
    			<a class="assistive-text" href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentytwelve' ); ?>"><?php _e( 'Skip to content', 'twentytwelve' ); ?></a>
    			<?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav-menu' ) ); ?>
    		</nav><!-- #site-navigation -->
    
    		<?php $header_image = get_header_image();
    		if ( ! empty( $header_image ) ) : ?>
    			<a href="<?php echo esc_url( home_url( '/' ) ); ?>"><div id="cimy_div_id_0">Loading images...</div>
    <div class="cimy_div_id_0_caption"></div>
    <style type="text/css">
        #cimy_div_id_0 {
    		float: left;
    		margin: 1em auto;
    		border: 0px solid #000000;
    		width: 950px;
    		height: 260px;
    	}
    	div.cimy_div_id_0_caption {
    		position: absolute;
    		margin-top: 175px;
    		margin-left: -75px;
    		width: 150px;
    		text-align: center;
    		left: 50%;
    		padding: 5px 10px;
    		background: black;
    		color: white;
    		font-family: sans-serif;
    		border-radius: 10px;
    		display: none;
    		z-index: 2;
    	}
    </style>
    </a>
    		<?php endif; ?>
    	</header><!-- #masthead -->
    
    	<div id="main" class="wrapper">

    satimis

    Thread Starter satimis

    (@satimis)

    Hi WPyogi,

    I have following line added;
    @import url(“../twentyeleven/style.css”);

    Thanks.

    What will be the next steps;

    If I expect making following changes

    1) on plugin css

    #cimy_div_id_0 {
        border: 0 solid #000000;
        float: left;
        height: 288px;
        margin: 1em auto;
        width: 1000px;
    }

    and change the width set in px to % as

    #cimy_div_id_0 {
        border: 0 solid #000000;
        float: left;
        height: 288px;
        margin: 1em auto;
        width: 100%;
    }

    2) on header.php
    Delete following line;
    <img src=”<?php header_image(); ?>” width=”<?php echo $header_image_width; ?>” height=”<?php echo $header_image_height; ?>” alt=”” />

    Replace the line with follows;

    <div id="cimy_div_id_0">Loading images...</div>
    <div class="cimy_div_id_0_caption"></div>
    <style type="text/css">
    	#cimy_div_id_0 {
    		float: left;
    		margin: 1em auto;
    		border: 1px solid #000000;
    		width: 1000px;
    		height: 288px;
    	}
    	div.cimy_div_id_0_caption {
    		position: absolute;
    		margin-top: 175px;
    		margin-left: -75px;
    		width: 150px;
    		text-align: center;
    		left: 50%;
    		padding: 5px 10px;
    		background: black;
    		color: white;
    		font-family: sans-serif;
    		border-radius: 10px;
    		display: none;
    		z-index: 2;
    	}
    </style>
    <noscript>
    	<div id="cimy_div_id_0_nojs">
    		<img id="cimy_img_id" src="https://piano-01.satimis.com/wp-content/Cimy_Header_Images/0/beautiful-pink-flowers_1000x288.jpg" alt="" />
    	</div>
    </noscript>

    3) Again on header.php
    Add following lines immediate after <head>

    <?php
    if ( is_home() ) {
    ?>
    <embed autostart="true" height="0" loop="true" src="https://piano-01.satimis.com/wp-content/uploads/2013/06/kanon_Matsuda_von_Weber_Invitation_to_dance.mp4" width="0"/>
    }
    <?php } ?>

    Thanks

    Rgds
    satimis

    Thread Starter satimis

    (@satimis)

    Hi wp-21,

    Thanks for your advice.

    Before proceeding further I expect to have some advice on creating the chile theme.

    After having Cimy Header Image Rotator installed and activited I duplicated twentyeleven and renamed it as twentyeleven-cimy. All editing for making the Rotator to work was done on the header.php and style.css in twentyeleven-cimy folder/directory. Whether I need to create another theme directory, say twentyeleven-cimy-child, and a file style.css in this directory holding;

    /*
    Theme Name:     Twenty Eleven Cimy Child
    Theme URI:      https://piano-02.satimis.com/
    Description:    Child theme for the Twenty Eleven Cimy theme
    Author:         satimis
    (leaving out Author URI)
    Template:       twentyeleven-cimy
    Version:        0.1.0
    */

    ?

    Do I need adding following line on the new style.css;

    @import url("../twentyeleven-cimy/style.css");
    ?

    Thanks

    Rdgs
    satimis

    Hi all,

    WordPress 3.1.5
    theme – twentyeleven
    On Godaddy server.

    Just installed JS Banner Rotator and have it activated.

    I followed following doc
    https://jumping-duck.com/wordpress/plugins/js-banner-rotate/

    to configure it. Unfortunately I was not very clear on the steps described there.

    1) What does “Place [jsbrotate images=image1url|image2url… /] on your pages/posts” refer to?

    2) What does it mean “Specify your images in a pipe-delimited list:

    images=https://blog.url/image1.jpg|https://blog.url/image2.jpg”
    ?

    etc.

    Where can I find a more detail instruction? Thanks

    Rgds
    satimis

    Thread Starter satimis

    (@satimis)

    Thanks, esmi

    Thread Starter satimis

    (@satimis)

    Hi,

    Thanks for your advice.

    style.css

    ....
    a:focus img[class*="align"],
    a:hover img[class*="align"],
    a:active img[class*="align"],
    a:focus img[class*="wp-image-"],
    a:hover img[class*="wp-image-"],
    a:active img[class*="wp-image-"],
    #content .gallery .gallery-icon a:focus img,
    #content .gallery .gallery-icon a:hover img,
    #content .gallery .gallery-icon a:active img {/* Add some useful style to those fancy borders for linked images ... */
        border-style: none;
    }
    ....

    delelting both;

    background: #eee;
    border-color: #bbb;

    The line (border) is still there. But moving mouse pointer over the image the line disappears.

    Is it possible deleting the board permanently?

    satimis

    Forum: Fixing WordPress
    In reply to: Background music
    Thread Starter satimis

    (@satimis)

    @andrew,

    Thanks for your advice.

    I got it done by adding following lines after <head> on header.php

    <?php if (is_home()) {
    ?>
    <embed autostart="true" height="0" loop="true" src="src="https://www.abc.com/blog/wp-content/uploads/2013/06/music.mp4" width="0"/>
    <?php } ?>

    But there is still a minor problem. On browser run;
    https://www.abc.com
    background music starts to play. But after visiting other pages -> Home again

    background music won’t play. On URL box it shows;
    abc.com/?page_id=11

    How to get rid of “?page_id=11”? Any suggestion? Thanks

    Rgds
    satimis

    Thread Starter satimis

    (@satimis)

    Sorry for not explaining clearer on my late posting. Example:

    The sentence “It is a beautiful world” would popup/blink/display at the same time. It’ll display character by character as;

    I
    It
    It i
    It is
    It is a
    …..
    It is a beautiful world (finally)

    The sentence will remain on the screen for a duration of x seconds and repeat.

    satimis

    Thread Starter satimis

    (@satimis)

    Hi all,

    Thanks for your reply.

    I got it fixed already with following steps.

    – Deleting the “Home” created
    – On Appearance -> Menu -> Categories
    Adding a page there to the menu as “Home”

    Now it works. I’m still not very clear of my solution. What are those uncategory pages for? Why? Pointer would be appreaciated.

    Besides please shed me some light on following points;
    On “Home”
    1) How to delete the phrase “Category Archives: Home”? Leaving only “Home” behind in black and bold?

    2) On clicking the phrase “It is a Beautiful World !!!” it evokes the same page “Home”
    only without the widgets on the right. If I expect clicking it to direct to another page, say “Wine – Le vin” or any page which I’ll add later, where shall I change its permalink?

    Thanks

    Rgds
    satimis

    Thread Starter satimis

    (@satimis)

    After visiting other pages, say Coffee/Cocktail etc and reclicking Home, then that error popup

    satimis

    Thread Starter satimis

    (@satimis)

    Thread Starter satimis

    (@satimis)

    Thanks. Your advice works for me.

    A further question
    adding;
    text-decoration: blink;

    The line blinks. Is there any way displaying the line alphabet by alphabet.

    satimis

Viewing 15 replies - 301 through 315 (of 342 total)