Forum Replies Created

Viewing 15 replies - 1 through 15 (of 18 total)
  • I didn’t realize it was so small haha!

    Thank you again!!!

    This makes perfect sense to accomplish this. I’m sorry, but I am not as code savvy as others, where do I locate this background image? I just inspected this element and I cannot find this uploaded file? I am also looking for this uploaded image in my header.php and I do not see it?

    Could this possibly be in my style.css?

    Thanks you

    Ok that is great, now what if I would like to make that background a certain transparency instead of completely transparent?

    What code would I use for this? Also, where within my header.php should I enter this code?

    I rather just gather all the information so I won’t have to keep pestering you 🙂

    Thank you for the help thus far.. wayy more support than the theme developer is providing. Thanks again

    Yes, I want to turn this piece transparent or close to it.

    <img class=”alignnone size-medium wp-image-712″ src=”https://musicmogulsource.com/wp-content/uploads/2016/02/Capture-300×81.jpg&#8221; alt=”Capture” width=”300″ height=”81″ />

    Bensita- I have the same issue but I would like to turn the DARK GREY -“Headertop” of my page transparent or at least have the transparency slightly opaque?

    Will I be able to use this code as well?

    https://musicmogulsource.com

    This is my Header.php

    <?php
    /**
     * The Header for our theme.
     */
      $settings = get_option( "ntl_theme_settings" );
    ?>
    
    <!DOCTYPE html>
    <html <?php language_attributes(); ?>>
    <head>
    <meta charset="<?php bloginfo( 'charset' ); ?>" />
    <title><?php wp_title(); ?></title>
    <link rel="profile" href="http://gmpg.org/xfn/11" />
    <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
    <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
    <link rel="stylesheet" type="text/css" media="all" href="<?php echo get_template_directory_uri(); ?>/musicstyles/musicplayer.css" />
    <link class="schanger" rel="stylesheet"  href="<?php echo get_template_directory_uri(); ?>/styles/<?php echo $settings['ntl_theme_bg']; ?>.css" type="text/css" />
    <script type="text/javascript">
    	var CromaplaySettings = {
     			color 		: "<?php echo $settings['ntl_theme_color']; ?>",
            	swfPath 	: "<?php echo get_template_directory_uri(); ?>/js",
            	swfPathalt 	: "<?php echo get_template_directory_uri(); ?>/js/alt",
            	colorscheme : "<?php echo $settings['ntl_theme_bg']; ?>"
     		};
     </script>
    
    <?php
    if ( is_singular() && get_option( 'thread_comments' ) ) wp_enqueue_script( 'comment-reply' );
    wp_enqueue_script( 'jquery' );
    ?>
    
    <?php
    wp_head();
    ?>
    <script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/js/jquery.backstretch.min.js"></script>
    <?php if ($settings['ntl_disable_audio'] != 'off') { ?>
    <script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/js/jquery.jplayer.min.js"></script>
    <script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/js/m-app.js"></script>
    <?php } ?>
    
    </head>
    
    <body <?php body_class(); ?> >
    
    	<!-- Adding the background image -->
    	<?php echo cp_get_bgimg(); ?>
    
    	<!-- Adding the menu & logo -->
    	<div class="mainlogo timerhide">
    		<div class="container clear">
    			<div id="access" role="navigation">
    			<?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) );  ?>
    			</div>
    			<a class="logo" href="<?php echo home_url(); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><img class="logoimg" src="<?php echo $settings['ntl_theme_logo']; ?>"></a>
    		</div>
    	</div>	
    
    	<!-- Getting the slideshow above the menu -->
    
    	<?php if ($settings['ntl_slide_type'] == 'content') { ?>
    	<!-- Netlabs functions for adding the slideshow -->
    	<?php if (is_home()){ ?>
    	<div class="container clear slidecontainer">
    			<?php lets_get_slideshow(); ?>
    
    	</div>
    	<?php } } ?>
    Thread Starter rmfn8475

    (@rmfn8475)

    Update: So I finally figured out how to roll back to WordPress 3.4 … which I did but I had the same problem, NO BACKGROUND!!

    I figured since I’m going to be tied down ironing out all these kinks to get this theme working anyway, I decided to go ahead and update my theme to its latest version which is Magzimus 1.4.3

    Current set up:

    WordPress V3.4
    Magzimus Theme V1.4.3

    Outcome: I have my custom background working properly now. The new dilemma is that my POST do not show up on the home page.

    Any suggestions??

    Thread Starter rmfn8475

    (@rmfn8475)

    Thanks you for your quick reply.. I have never rolled back a version on WordPress before… Where would I install WordPress 3.4 in my FTP client?

    My options are

    wp- Admin
    wp-Contents
    wp-Included

    If i could only get pointed in the right direction I should be fine.

    Go to permalinks in settings… select custom, then add –> /%postname%

    then in you theme folder either modify or create the .htaccess folder within your theme root .. enter below

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    save.. then refresh your browser.. you shouldnt have any more 404 errors.

    Thread Starter rmfn8475

    (@rmfn8475)

    bump

    I am having a similar issue.. but I am having issues having the additional sidebars created appear on the selected pages I want.. with that said, I was able to create the additional sidebars just by going into my functions.php and simply copying the default sidebar code and replace the sidebar name with your unique ID.

    [please read the forum guidelines for posting code]

    <?php
    if ( function_exists('register_sidebar') )
        	register_sidebar(array(
            	'name' => __( 'Right Sidebar', 'twentyeleven_child' ),
    		'id' => 'sidebar-6',
    		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
    		'after_widget' => "</aside>",
    		'before_title' => '<h3 class="widget-title">',
    		'after_title' => '</h3>',
    	) );
    ?>

    now you should be able to go to your widgets in dashboard and add additional widgets into each sidebar you’ll like…

    Now having the sidebars appear on the site on different page if that is your goal is where we’re both stuck at

    The support over at TF is horrible.. I’ve sent numerous emails with no response.. This theme is great but the bugs that come with it are endless…

    Again I ask if anyone has any resolution as to why my images aren’t showing in the slider.. please contact me at RMFNATION@gmail.com

    I am having the same issue 🙁 and the author is no where to be found smh

    apologize.. I appreciate your time.

    ??

    I will release the page block now.. Check in 2min.. Also would you have any additional advice on how to have my menu options ex. (music,pics,vids) have the same colums post layout as my home page?

Viewing 15 replies - 1 through 15 (of 18 total)