Forum Replies Created

Viewing 15 replies - 1 through 15 (of 17 total)
  • Hey, is your wordpress updated to the latest one? I’m wondering if this is safe to install on the newest wordpress version.

    Thread Starter nekobaby

    (@nekobaby)

    Ah Ok! I got mostly worked out now. Thank you!

    I ended up doing the following and it worked out:

    .section-inner {
    	max-width: 980px;
    	width: 90%;
    	margin: 0 auto 0 auto;
    }
    
    .section-inner .posts{
    	width: 90%;
    	margin-left: auto;
    	}

    I do have the issue where the previews on mobile are shrinking and staying at 2 columns. I’m looking into the code right now to see how I can get that fixed.

    • This reply was modified 5 years, 11 months ago by nekobaby.
    Thread Starter nekobaby

    (@nekobaby)

    I tried removing that previously, but then it causes all the previews to lie flush against one another. . . to the left side of the page. When I tried to add spacing between them, the preview thumbs would then warp in size and shape.

    Do you know if there is a way to get the previews to sit at the center of the page with spacing between them, with only 3 to a column?

    Thanks!

    Thread Starter nekobaby

    (@nekobaby)

    Hey! So I have the desktop size working perfectly, but I think I must have deleted the mobile code that gets it to load the previews in single column somehow. Do you know what css I need to fix it? Right now it is loading 3 columns on the post-preview pages, though the actual posts themselves are displaying correctly.

    So Sketch basically runs off the page, while Sketch Night Post displays as it should.

    I’m literally at the last hurdle to having this whole thing setup correctly, but I can’t fix this one piece.

    • This reply was modified 5 years, 11 months ago by nekobaby.
    Thread Starter nekobaby

    (@nekobaby)

    I’ll check it. I thought I had removed it in my css overrides, but maybe I have it in the main css file. Thanks!

    Thread Starter nekobaby

    (@nekobaby)

    That’s brilliant! Thank you for the help!

    Thread Starter nekobaby

    (@nekobaby)

    One last question. . . do you know if it is possible to minimize the number of thumbs when in the Square layout? I have designated it to only show 6 images and to use MORE to load more images, but no matter what I do, it shows more than that number. I’ve been googling around, but can’t find anything that directly relates to this.

    Thanks!

    example of the issue
    https://samdennett.com/portfolio/photo/

    • This reply was modified 5 years, 11 months ago by nekobaby.
    Thread Starter nekobaby

    (@nekobaby)

    Worked perfectly and no blurriness in the thumbnails as far as I can see. Thank you so much!

    Thread Starter nekobaby

    (@nekobaby)

    Thank you for the response! I will give it a try and see if I can make it work.

    Thread Starter nekobaby

    (@nekobaby)

    Okay… never mind on the bar. There’s definitely something funky in the coding somewhere, but when I drop the widget/side menu into the Sidebar PAGE it shows up. Just a little weird since Sidebar HOME works on the other pages. Hmmmmm…..

    Now my issue is getting the sidebar to run the full length of the content wrapper. I thought I had it, but I’ve just realized that it’s cutting off the content. Tricky.

    Thread Starter nekobaby

    (@nekobaby)

    This is my .htaccess

    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    
    # add a trailing slash to /wp-admin
    RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
    
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ - [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
    RewriteRule . index.php [L]

    One other thing while I’m thinking on it. I was having an issue with the comment box going out of bounds and crossing into the sidebar with the widgets. I fixed it using the following…

    Look for

    #comment-wrap {
    border: 0px;
    color: #6e6e6e;
    font-size: 11px;
    }

    The info inside the brackets might vary depending on how you customised it.

    Then add the following between the brackets:

    overflow: hidden;
    word-wrap: break-word;

    And voila! The comments form stays in-bounds.

    Okay, I have found the answer. Of course I find it right after I post looking for the answer. Then again, I have been looking for 3 days, so I was bound to find it at some point. Lol.

    If you are having issues with the Slider thumbnails stacking, here is the answer . .

    Look for

    #fronter {
    position:absolute;
    left:10;
    height:100px;
    top: 10px;
    }

    and paste inbetween the bracket things the following. . .

    white-space: nowrap;
    overflow: auto;

    This works great in Firefox and IE.
    You don’t even have to remove the “overflow: hidden” from #frontarea if you don’t want to. It seems to work without it too.

    I’m seriously glad I found this.

    Hello,
    ryans213 mentioned 4 months ago:

    I keep having a problem with my thumbnails stacking rather than lining up horizontally. I did adjust the div’s around the logo but did not alter the wrapper or any major div that I would suspect to affect the thumbnails.

    I am having this very same issue with my template below:
    Ubiquitous

    I’m working on getting this theme to match-up with the alTop-Theme. I think I’ve done an okay job so far, but the stacking thumbnails is driving me nuts! I’ve turned off the “overflow: hidden” so that you can see what my problem is. A copy of the style sheet I’m working with is here.

    Any help would be great! I just can’t figure this out.

    Thread Starter nekobaby

    (@nekobaby)

    Okay, I’m using the following coding, the original was found here, and I don’t need to use the thumbnail-for-excerpts plugin!

    One problem, though. I can pull the image into my meta section, but the Key title and the link in the Value show as text as well. My coding is as follows….

    <?php get_header(); ?>
     <?php get_sidebar(); ?>
     <!-- Content -->
         <div id="content">
    	<?php if (have_posts()) : ?>
    	<?php while (have_posts()) : the_post(); ?>
    	<?php $Thumbnail = get_post_meta($post->ID,'Thumbnail',true);?>
     <!-- Post -->
    	<div class="post" id="post-<?php the_ID(); ?>">
    	    <div class="post-title">
    	      <div class="post-date"><span><?php the_time('d')?>
                           </span><?php the_time('M') ?></div>
    		<h2>
                    <a href="<?php the_permalink() ?>" rel="bookmark"
                    title="Permanent Link to <?php the_title_attribute();
                    ?>">
                    <?php the_title(); ?></a>
                    </h2>Author: <?php the_author() ?>
                    &nbsp;//&nbsp;Category: <?php the_category(', ') ?>
    	       </div>
    	       <div class="post-entry">
    
                    <?php if($Thumbnail !== '') { ?><a href="<?php
                      the_permalink(); ?>"><img src="<?php echo
                      get_post_meta($post->ID, "Thumbnail", true); ?>"
                      style="width:125px; margin:15px auto 0 auto;"
                      alt="<?php the_title(); ?> <?php _e('thumbnail');
                      ?>" class="alignleft" />
                      <?php } ?></a>
    
                      <?php the_meta(); ?>
    
                      <?php if($post->post_excerpt) :the_excerpt();?>
                      <center><h4><a href="<?php the_permalink() ?>"
                     rel="bookmark" title="Read <?php the_title();?>">Read
                      <?php the_title(); ?></h4></a> </center>?
    
                      <?php else:the_content();endif;?>
    
                      <center><h3><?php link_pages(''); ?></h3></center>
    
    		 </div>
    
    		 <div class="post-info">
    		   <?php comments_popup_link('Comments (0)', 'Comment
                        (1)', 'Comments (%)'); ?> &nbsp;// &nbsp;<a
                        href="<?php the_permalink() ?>#respond">Add
                        Comment</a>
    		 </div>
    		</div>
    		<!-- /Post -->
    		<?php endwhile; ?>
    		<!-- Navigation -->
    	     <div class="navigation">
    	     <div class="navigation-previous"><?php
                 next_posts_link('&laquo; Previous Entries') ?></div>
                 <div class="navigation-next"><?php
                  previous_posts_link('Next Entries &raquo;') ?></div>
    			</div>
    			<!-- /Navigation -->
    			<?php else : ?>
    			<!-- Post -->
    			<div class="post">
    				<div class="post-title">
    					<h2>Not Found</h2>
    				</div>
    				<div class="post-entry">
    					Sorry, but you are looking for
                                     something that isn't here.
    
    				</div>
    			</div>
    			<!-- /Post -->
    			<?php endif; ?>
    
    			<div class="clear"></div>
    
    		</div>
    		<!-- /Content -->
    
    <?php get_footer(); ?>
Viewing 15 replies - 1 through 15 (of 17 total)