Forum Replies Created

Viewing 14 replies - 1 through 14 (of 14 total)
  • Thread Starter rffnralk

    (@rffnralk)

    Hi Nicolas,

    To the best of my recollection this is how I made this happen. I activated the Nimble Builder plugin. Go to customize. On my page I click the little black + icon and select (insert new section). I put a menu in there and it simply does not work. You get something that looks like this

    .


    The menu on top is my normal Hueman theme. I have tried disabling the Hueman theme, putting the nimble builder menu and header everywhere, deleting all my custom css, and deactivating plugins, and have had no luck.

    I saw the demo sight you posted and I am trying to obtain something similar, but am at a loss.

    Thanks!
    Alex

    • This reply was modified 6 years, 4 months ago by rffnralk.
    Thread Starter rffnralk

    (@rffnralk)

    Hi Nicolas,

    Thanks for the reply. I will follow-up tomorrow with a proper post walking through what I did with pictures.

    Thanks!
    Alex

    Hi TUT I tried this plugin with no positive result. Not sure with this theme it works or maybe I am missing something.

    I’ve tried moving the social icons for years with this theme with no real luck. It is a huge frustration of mine.

    Thread Starter rffnralk

    (@rffnralk)

    Sorry, by author bio I meant when you go to a post such as
    http://www.riffnralk.com/an-interview-with-juan-alderete/

    the author’s name is very light colored and I want to darken it.

    rffnralk

    (@rffnralk)

    what if I wanted to deactivate the line via a child theme?

    I did what you suggested for the time being and worked thanks!

    rffnralk

    (@rffnralk)

    Sorry for bumping an old thread, but I’m curious what exactly the code would be to make this work as I am interested as well

    Thread Starter rffnralk

    (@rffnralk)

    http://www.riffnralk.com/podcasts/music-tock/2013-episodes/

    Here is as far as I could get. I can not for the life of me figure out why the image creates this gap between itself and text. I’m going mad trying to determine what the issue is.

    Edit: I resolved it! It was one bloody ‘/’ in the on page coding I missed. I cannot believe that one little backslash could cause such a massive headache!

    Thread Starter rffnralk

    (@rffnralk)

    ok, I played with it a bit on my own and I almost got it, just gotta figure out how to remove that gap in the middle where the link isn’t responsive, the hover is working though.
    http://www.riffnralk.com/podcasts/music-tock/2013-episodes/

    I might get rid of the border, haven’t decided

    Here are the codes I used (thank you google inspect element!). I had to go into the styles.css and create a Div category

    Here is the .css code

    }
    .archiveitem {
    	float: left;
    }
    .archiveitem div {
    	margin-left: 25px;
    	overflow: hidden;
    	padding: 2px 5px;
    }
    .archiveitem img {
    	margin: 15px 18px 0px 18px;
    	padding: 10px;
    	background: #0D0D0D;
    	border: 1px solid #0D0D0D;
    }
    .archiveitem a {
    	font-size: 18px;
    
    }
    .archiveitem img, #featuredImg img {
    	border: 1px solid #0D0D0D;
    }
    .archiveitem:hover img, #featuredImg:hover a img {
    	border: 1px solid #fff;
    }
    .archiveitem:hover a, #featuredImg:hover a {
    	text-decoration: underline;
    }

    and here is the input code for the post

    <div class="archiveitem"><a href="http://www.riffnralk.com/episode-17"><img class="alignnone wp-image-661" src="http://www.riffnralk.com/wp-content/uploads/2014/01/Picture11-768x254.jpg" alt="Picture11" width="540" height="178.5" />
    <div>Lady Gaga - Artpop / Melt-Banana - Fetch / 1st Annual Riff 'n Ralkies</div>
    </a>
    </div>

    Thread Starter rffnralk

    (@rffnralk)

    no luck.

    Thread Starter rffnralk

    (@rffnralk)

    Sorry for the headaches, its within a page

    So the coding for just that first image+text (since I imagine it will be repeated with all the others) is

    <a href="http://www.riffnralk.com/episode-17"><img class="alignnone  wp-image-661" src="http://www.riffnralk.com/wp-content/uploads/2014/01/Picture11-768x254.jpg" alt="Picture11" width="540" height="178.5" /></a>
    <div><a href="http://www.riffnralk.com/episode-17">Lady Gaga - Artpop     /      Melt-Banana - Fetch   /   1st Annual Riff 'n Ralkies</a></div>

    If you need all of it let me know

    Thanks again for your help!

    Alex

    Thread Starter rffnralk

    (@rffnralk)

    <article id="post-<?php the_ID(); ?>" <?php post_class('group'); ?>>
    	<div class="post-inner post-hover">
    
    		<div class="post-thumbnail">
    			<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
    				<?php if ( has_post_thumbnail() ): ?>
    					<?php the_post_thumbnail('thumb-medium'); ?>
    				<?php elseif ( ot_get_option('placeholder') != 'off' ): ?>
    					<img src="<?php echo get_template_directory_uri(); ?>/img/thumb-medium.png" alt="<?php the_title(); ?>" />
    				<?php endif; ?>
    				<?php if ( has_post_format('video') && !is_sticky() ) echo'<span class="thumb-icon"><i class="fa fa-play"></i></span>'; ?>
    				<?php if ( has_post_format('audio') && !is_sticky() ) echo'<span class="thumb-icon"><i class="fa fa-volume-up"></i></span>'; ?>
    				<?php if ( is_sticky() ) echo'<span class="thumb-icon"><i class="fa fa-star"></i></span>'; ?>
    			</a>
    			<?php if ( comments_open() && ( ot_get_option( 'comment-count' ) != 'off' ) ): ?>
    				<a class="post-comments" href="<?php comments_link(); ?>"><span><i class="fa fa-comments-o"></i><?php comments_number( '0', '1', '%' ); ?></span></a>
    			<?php endif; ?>
    		</div><!--/.post-thumbnail-->
    
    		<div class="post-meta group">
    			<p class="post-category"><?php the_category(' / '); ?></p>
    			<p class="post-date"><?php the_time('j M, Y'); ?></p>
    		</div><!--/.post-meta-->
    
    		<h2 class="post-title">
    			<a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a>
    		</h2><!--/.post-title-->
    
    		<?php if (ot_get_option('excerpt-length') != '0'): ?>
    		<div class="entry excerpt">
    			<?php the_excerpt(); ?>
    		</div><!--/.entry-->
    		<?php endif; ?>
    
    	</div><!--/.post-inner-->
    </article><!--/.post-->

    here is the content. Just so I don’t totally kill it, what would be the changes?

    Thread Starter rffnralk

    (@rffnralk)

    Hi Can,

    this is all I can find in the index.php

    <?php get_header(); ?>
    
    <section class="content">
    
    	<?php get_template_part('inc/page-title'); ?>
    
    	<div class="pad group">
    
    		<?php get_template_part('inc/featured'); ?>
    
    		<?php if ( have_posts() ) : ?>
    
    			<div class="post-list group">
    				<?php $i = 1; echo '<div class="post-row">'; while ( have_posts() ): the_post(); ?>
    				<?php get_template_part('content'); ?>
    				<?php if($i % 2 == 0) { echo '</div><div class="post-row">'; } $i++; endwhile; echo '</div>'; ?>
    			</div><!--/.post-list-->
    
    			<?php get_template_part('inc/pagination'); ?>
    
    		<?php endif; ?>
    
    	</div><!--/.pad-->
    
    </section><!--/.content-->
    
    <?php get_sidebar(); ?>
    
    <?php get_footer(); ?>

    thoughts?

    Thread Starter rffnralk

    (@rffnralk)

    Any suggestions as to what the coding would be for that?

    I’ll see what I can do on my own, but I don’t anticipate the best of results

    Thread Starter rffnralk

    (@rffnralk)

    Thanks Alex I’ll double check those and see if they then work in the child theme style sheet after modifying them. Odd enough they worked in the custom CSS manager though. Any ventures as to why?

Viewing 14 replies - 1 through 14 (of 14 total)