comforteagle03
Forum Replies Created
-
Wow this post got really off topic. I don’t know what kind of answer that first one was but it was entirely unnecessary.
The image you have is a single image/post, meaning you’ll need to open the single.php file
This theme however does a lot of “get_template_part” so down the rabbit hole we go!
The single.php file says
<?php get_template_part( 'loop', 'single' ); ?>
so when we go to loop-single.php it says<?php get_template_part( 'content', get_post_format() ); ?>
so then we go to content.php and FINALLY we find the line which reads:
<li><?php _e( 'Filed under', 'minimatica' ); ?> <?php the_category( ', ' ); ?></li>
Either delete that or change it to something else
??
Forum: Reviews
In reply to: [The Events Calendar] Can't remove it fullyHi,
Thanks for showing how to fix the URL/permalink. The removal reason is because the ‘tooltip’ popup does not disappear when the page template it set to one with ads. No ads and it works normally. I’ll see if there’s a way to change the scripting w/in the ads. In the meantime, thanks for the help!
Forum: Themes and Templates
In reply to: [Brightpage] [Theme: Brightpage] Center Align NavigationYes, I’m using Chrome’s inspector. Made some adjustments there to try and adjust however Most recently I did inline CSS as a last resort since that’s supposed to take precedence according to https://www.w3schools.com/css/css_howto.asp but of course it’s not working. I am wondering though why removing the “grid_1 first” made no change. I may just deal with it for now and when the site is live then we’ll have a URL to work with….
Forum: Themes and Templates
In reply to: [Brightpage] [Theme: Brightpage] Center Align NavigationI’m building the website offline first, so right the URL won’t do much. At the moment it is 127.0.0.1:4001/wordpress. I’m using InstantWP to make it at the moment. I did try the first suggestion of changing the width to the full 980px and margin to “0 auto;” however is still won’t move.
There are some other items I found within the div tag that are affecting the layout. Here’s samples how the navigation menu looks from the header in original form before I tried adjusting:
<div id="top-nav" class="clearfix"> <div id="menu" class="grid_1 first"> <?php if (function_exists('wp_nav_menu')) { wp_nav_menu(array('theme_location' => 'wpj-main-menu', 'menu_id' => 'dropmenu', 'fallback_cb' => 'wpj_default_menu')); } else { wpj_default_menu(); } ?> </div> <!-- end div #menu --> </div> <!-- end div #top-nav -->
The CSS for the navigation menu is:
#top-nav { background: url(images/top-nav.jpg); }
#menu { width: 980px; position: relative; z-index:100; }
#dropmenu { margin: 0; padding: 0 0 0 30px; list-style-type: none; }
#dropmenu a { display: block; padding: 15px 15px; text-decoration: none; color: #999; font-size: 12px; text-transform: uppercase; }
#dropmenu ul { position: absolute; display: none; top: 40px; left: 0; padding: 9px; }
#dropmenu li { float: left; position: relative; list-style: none; }
#dropmenu ul ul { top: auto; }
#dropmenu li ul { top: 40px; left: -10px; margin: 0; position: absolute; z-index: 200; }
#dropmenu li ul a { width: 120px; height: auto; float: left; }
#dropmenu li ul ul { top: -10px; left: 140px; margin: 0; }
#dropmenu li:hover ul ul, #dropmenu li:hover ul ul ul, #dropmenu li:hover ul ul ul ul { display: none; }
#dropmenu li:hover ul, #dropmenu li li:hover ul, #dropmenu li li li:hover ul, #dropmenu li li li li:hover ul { display: block; }
#dropmenu ul li, #dropmenu li.active .children li.active ul li { background: #f1f1f1; border-top: 1px solid #ddd; -webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.15); -moz-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.15); }
#dropmenu ul li:hover { background: #fff; }and that last bit about class=”grid_1 first” is from:
.grid_1 { width: 670px; float: left; margin: 0; display: inline; }
and
.first { margin-left: 0; /* the first left column */ }oddly enough removing the entire class=”grid_1 first” made no change. and yes I did clear the cache.
Thank you in advance!
Thanks for posting a link to your site. Looking at the coding it looks like your slider is set to the default 920×300, however the images within the slider are much smaller resulting in that empty space to the right. The largest of your images is only 604×300. Brightpage isn’t set to stretch the image.
Forum: Themes and Templates
In reply to: [Brightpage] [Theme: Brightpage] slider imageIf you want just the slider image go to the post-excerpt.php and remove the line
<?php the_post_thumbnail('post-image', array('class' => 'imgthumb')); ?>
nothing else needs to be changed after that.
I successfully removed that “featured image preview” within the loop by going to post-excerpt.php and removing
<?php the_post_thumbnail('post-image', array('class' => 'imgthumb')); ?>
I have a similar problem, my slider stops after the last image (even with one image). The title overlay will disappear, then the entire image will flicker for a moment before disappearing.
@mr_royale … would you mind elaborating what you did to fix yours? I’m very new to WordPress and don’t know how to do that…