Forum Replies Created

Viewing 15 replies - 511 through 525 (of 639 total)
  • Theme Author acosmin

    (@acosmin)

    I am sorry but this is starting to feel like custom web design work. I can only help you with bugs or minor tweaks. You can find the help you need on http://jobs.wordpress.net/.

    As for your question, I am going to help you one last time.

    Open header.php find:

    <h2 class="description"><?php bloginfo( 'description' ); ?></h2>

    add above it this code:

    <br />

    Now open style.css find:

    .logo {
    display: inline-block !important;
    position: absolute;
    font-size: 36px;
    letter-spacing: 10px;
    font-weight: normal;
    text-transform: uppercase;
    text-align: left;
    top: 50%;
    left: 50%;
    margin-left: -245px;
    transform: translate(0, -50%);

    change it to:

    .logo {
    display: inline-block !important;
    position: absolute;
    font-size: 36px;
    letter-spacing: 10px;
    font-weight: normal;
    text-transform: uppercase;
    text-align: left;
    top: 50%;
    left: 50%;
    margin-left: -245px;
    transform: translate(0, -50%);
    text-align: center;
    }

    also find:

    .logo a, .logo .description {
    display: inline-block;
    float: left;
    }

    change it to:

    .logo a, .logo .description {
    display: inline-block;
    }

    Sorry for being harsh, but its just a free WordPress theme.

    Theme Author acosmin

    (@acosmin)

    It’s not possible at the moment.

    Theme Author acosmin

    (@acosmin)

    I am sorry, I can’t offer support for 3rd party plugins.

    Theme Author acosmin

    (@acosmin)

    Try using the responsive ads from Google Adsense.

    Then open /post-templates/content-single.php, find this line:

    <div class="single-content<?php if( $show_thumbnail) { echo ' featured-image'; } ?>">

    add bellow it this:

    <div style="width: 100%;" class="clearfix">
      YOUR ADSENSE CODE GOES HERE!
    </div>
    Theme Author acosmin

    (@acosmin)

    You can open style.css, find:

    .logo {
    display: inline-block !important;
    position: absolute;
    font-size: 36px;
    letter-spacing: 10px;
    font-weight: normal;
    text-transform: uppercase;
    text-align: left;
    top: 50%;
    left: 35px;
    transform: translateY(-50%);
    }

    replace with:

    .logo {
    display: inline-block !important;
    position: absolute;
    font-size: 36px;
    letter-spacing: 10px;
    font-weight: normal;
    text-transform: uppercase;
    text-align: left;
    top: 50%;
    left: 50%;
    margin-left: -245px;
    transform: translate(0, -50%);
    }
    Theme Author acosmin

    (@acosmin)

    From what I see you are using a plugin to display your ads.

    I am sorry buy I can’t offer support for 3rd party plugins or theme customization. You will need to speak with the plugin’s author…

    Theme Author acosmin

    (@acosmin)

    Then go in your WordPress Adminitration Panel, then Appearance and select Editor. You will find the files on the right side, open them and change them as I said above.

    Theme Author acosmin

    (@acosmin)

    Open header.php and delete these lines:

    <nav class="menu-wrap<?php ac_mini_disabled(); if ( get_theme_mod( 'ac_disable_stickymenu' ) ) { echo ' sticky-disabled'; } ?>" role="navigation">
    		<?php
    			if( has_nav_menu( 'main' ) ) {
    				wp_nav_menu( array( 'container' => '', 'theme_location' => 'main', 'items_wrap' => '<ul class="menu-main mobile-menu superfish">%3$s</ul>' ) );
    			} else {
    				echo '<ul class="menu-main mobile-menu superfish"><li class="current_page_item"><a>' . __( 'Add a menu', 'acosmin' )  . '</a></li></ul>';
    			}
    		?>
    
            <a href="#" class="mobile-menu-button"><?php ac_icon( 'bars' ) ?></a>
            <?php if ( !get_theme_mod( 'ac_disable_minisidebar' ) ) { ?>
            <a href="#" class="browse-more" id="browse-more"><?php echo ac_icon('caret-down', false) . __( 'Browse', 'acosmin' ) ?></a>
            <?php } ?>
            <a href="#" class="search-button"><?php ac_icon( 'search' ) ?></a>
    
            <ul class="header-social-icons clearfix">
    			<?php
    				// Social variables - Options Panel
    				$header_fb 	= of_get_option( 'ac_facebook_url' );
    				$header_tw 	= of_get_option( 'ac_twitter_username' );
    				$header_gp 	= of_get_option( 'ac_gplus_url' );
    				$header_rss = of_get_option( 'ac_custom_rss_url' );
    
    			?>
    			<?php if ( $header_tw != '' ) { ?><li><a href="https://twitter.com/<?php echo esc_html( $header_tw ); ?>" class="social-btn left twitter"><?php ac_icon('twitter'); ?></a></li><?php } ?>
    			<?php if ( $header_fb != '' ) { ?><li><a href="<?php echo esc_url( $header_fb ); ?>" class="social-btn right facebook"><?php ac_icon('facebook'); ?></a></li><?php } ?>
    			<?php if ( $header_gp != '' ) { ?><li><a href="<?php echo esc_url( $header_gp ); ?>" class="social-btn left google-plus"><?php ac_icon('google-plus'); ?></a></li><?php } ?>
    			<li><a href="<?php if( $header_rss != '' ) { echo esc_url( $header_rss ); } else { bloginfo( 'rss2_url' ); } ?>" class="social-btn right rss"><?php ac_icon('rss'); ?></a></li>
            </ul><!-- END .header-social-icons -->
    
            <div class="search-wrap nobs">
            	<form role="search" id="header-search" method="get" class="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>">
                	<input type="submit" class="search-submit" value="<?php _e( 'Search', 'acosmin' ); ?>" />
                	<div class="field-wrap">
    					<input type="search" class="search-field" placeholder="<?php _e( 'type your keywords ...', 'acosmin' ); ?>" value="<?php get_search_query(); ?>" name="s" title="<?php _e( 'Search for:', 'acosmin' ); ?>" />
    				</div>
    			</form>
            </div><!-- END .search-wrap -->
    
        </nav><!-- END .menu-wrap -->

    Then open style.css and find:

    .top {
         height: 150px;
    }

    Change it with:

    .top {
         height: 220px;
    }
    Theme Author acosmin

    (@acosmin)

    The theme options part is like an extension, it wasn’t developed by me and I don’t really know how to solve that problem.

    You can try your luck asking your question here: https://github.com/devinsays/options-framework-theme/issues

    Sorry!

    Theme Author acosmin

    (@acosmin)

    I think you can arrange posts by calendar date. If you want a post above or bellow Teresa de Calcuta just change the newer post’s date and hour to be higher.

    Theme Author acosmin

    (@acosmin)

    Wehn you say suppress you mean remove?

    If yes, open “sidebar-browse.php” and find:

    wp_nav_menu( array( 'container' => '', 'theme_location' => 'mini-first', 'items_wrap' => '<ul class="normal-list"><li class="'. $page_state .'"><a href="'. esc_url( home_url() ) .'" title="'. __('Go Home', 'acosmin') .'">'. __('Main Page', 'acosmin') .'</a></li>%3$s</ul>' ) );

    replace with:

    wp_nav_menu( array( 'container' => '', 'theme_location' => 'mini-first', 'items_wrap' => '<ul class="normal-list"><li class="'. $page_state .'"></li>%3$s</ul>' ) );

    To remove Archives and Calendar delete these lines:

    <aside class="side-box">
    		<h3 class="sidebar-heading"><?php _e( 'Archives', 'acosmin' ); ?></h3>
    		<nav class="sb-content clearfix">
    			<ul class="normal-list">
    				<?php wp_get_archives( array( 'type' => 'monthly', 'limit' => 12 ) ); ?>
    			</ul>
    		</nav><!-- END .sb-content -->
    	</aside><!-- END .sidebox -->
    
        <div class="side-box larger">
        		<h3 class="sidebar-heading"><?php _e( 'Calendar', 'acosmin' ); ?></h3>
                <div class="sb-content clearfix">
                	<?php get_calendar(true); ?>
    		</div><!-- END .sb-content -->
    	</div><!-- END .sidebox -->

    Theme Author acosmin

    (@acosmin)

    I am sorry, but you have way too many menu items. You should rethink the structure, add more sub-menus.

    Or open style.css, find:

    .container {
    	margin: 45px auto;
    	border-top-width: 5px;
    	border-bottom-width: 5px;
    	border-top-style: solid;
    	border-bottom-style: solid;
    }

    change it with:

    .container {
    	margin: 155px auto 45px auto;
    	border-top-width: 5px;
    	border-bottom-width: 5px;
    	border-top-style: solid;
    	border-bottom-style: solid;
    }
    Theme Author acosmin

    (@acosmin)

    No problem! I think you can change in style.css this:

    #myfirstad {
      background: none;
      background-color: #fff;
      border: none;
    }

    to:

    .adsbygoogle {
      background: none;
      background-color: #fff;
      border: none;
    }

    There is some extensive documentation regarding child themes:
    http://codex.wordpress.org/Child_Themes

    Also, you can leave a rating if you find this theme helpful:
    https://wordpress.org/themes/justwrite

    I am going to sleep. Good Night! 🙂

    Theme Author acosmin

    (@acosmin)

    Where you have this line:
    <article class="post-template-1 clearfix">

    change it to:
    <article id="myfirstad" class="post-template-1 clearfix">

    Now open style.css and at the bottom add:

    #myfirstad {
      background: none;
      background-color: #fff;
      border: none;
    }

    Theme Author acosmin

    (@acosmin)

    ^^ wrong account, that was me.

Viewing 15 replies - 511 through 525 (of 639 total)