Jeremy
Forum Replies Created
-
Here’s a sample post: https://sunsets.cc/2020/08/17/seeing-red-2020/
Here’s the CSS that was previously working to make the image larger without doing full-width:
.entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide):not(.size-full) { max-width: 90rem; width: calc(100% - 3rem); }
Hello again, it seems a recent update has somehow lead to nearly all the image blocks shrinking in size. Is there a way through css or functions.php to have all image blocks change to a “wide-width” without having to edit each post individually?
Will definitely leave a review, greatly appreciate the prompt support!
Last question for now, how can I adjust the style of the infinite scroll button? Ideally it would match the style of the button on https://sunsets.cc/about. Alternatively, I’d just like to add a border radius to make the corners rounded like the images on the site.
Awesome, thanks again!
Thanks again for your support.
I’m now trying to decrease the height of the header, but can’t seem to override the right class in CSS. Is this possible?
Thank you for the prompt response and great support!
One more question: Is there a simple way to change the default width of media (images, but video would be nice too) in a post or page in Twenty Twenty with Twentig via Customize without having to edit every single post via block editor? The default size too small and the full width too big.
Forum: Themes and Templates
In reply to: [Twenty Twenty] Change the width allocated to post tagsI have the same question, would really appreciate some guidance from the community!
Forum: Themes and Templates
In reply to: [Twenty Twenty] Customize related posts in Twenty TwentyW/re: to the latter, I didn’t intend to do that through Jetpack. I was hoping someone could look at the code I posted initially (and again below) and advise on how I could integrate that either directly into a post, or ideally through the theme template or functions.php.
<?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h2><?php the_title(); ?></h2> <span class="date"><?php the_time(__('j M Y','vostok')) ?></span> <div class="entry"> <?php the_content(__('Read the rest of this article','vostok').' »'); ?> <div class="show-info"> <br> <p> <table> <tr> <td valign="top" width="80" align="left">show info:</td> <td valign="top" width="560" align="left"><?php the_category( ' / '); ?></td> </tr> </table> </p> <p> <table> <tr> <td valign="top" width="80" align="left">related:</td> <td valign="top" width="560" align="left"> <?php //for use in the loop, list up to 60 post titles related to first tag on current post $backup = $post; // backup the current object $tags = wp_get_post_tags($post->ID); $tagIDs = array(); if ($tags) { $tagcount = count($tags); for ($i = 0; $i < $tagcount; $i++) { $tagIDs[$i] = $tags[$i]->term_id; } $args=array( 'tag__in' => $tagIDs, 'post__not_in' => array($post->ID), 'showposts'=>60, 'caller_get_posts'=>1 ); $my_query = new WP_Query($args); if( $my_query->have_posts() ) { while ($my_query->have_posts()) : $my_query->the_post(); ?> - <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a><br> <?php endwhile; } } $post = $backup; // copy it back wp_reset_query(); // to use the original query again ?> </td> </tr> </table> </p>
Forum: Themes and Templates
In reply to: [Twenty Twenty] Customize related posts in Twenty TwentyThanks, James.
1) Is there a way to hide the related posts on mobile with some additional CSS/code outside of Jetpack?
2) Here’s what it used to look like on my old theme.
Essentially I was showing two things: 1) the specific categories for that particular post and 2) using specific tags to display a list of related shows. In this case, anything that was tagged Thom Yorke or Radiohead. The idea was to associate each show from a particular band/act.
Forum: Plugins
In reply to: [gPress] [Plugin: gPress] Fatal Errorsi got the same error today. never seen it before. please advise
wordpress 3.0.2
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] ID 675: A failure occurred [more] 1@ shawnkltucker:
no “1” – instead i get:
[more]
[object XMLHttpRequest]when i mouseover [more] that is what shows up. nothing actually clicks thru
strange cause i never had any issues until the latest release. not sure if its NGG and/or some issue with 2.8.4
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] ID 675: A failure occurred [more] 1i changed the code (as suggested above) and i’m still getting the same “A failure occured” error messages.
Can’t seem to upload more than 40 or so images into a single gallery without this error popping up.
love this plugin, but this error is really hurting its effectiveness atm.
thanks for any help, in advance
figure it out! there was some weird CSS.
i actually was able to diagnose the issue thru chrome’s built-in “inspect element” tool which shows all the CSS and lets you effectively turn elements on and off to see what is causing the problems.
Forum: Plugins
In reply to: editing wordtube playlist orderI’m also in need of this “ordering” functionality.
according to the plug-in page:
Playlist order: to gain control over playlist order, go to admin panel -> Manage -> Media Center. Select the playlist you want to order in the dropdown menu of the filter part of the screen. Click on order field for each media to choose order, enter to save.
however, there editable field that I can find. is this a WP 2.8 issue? or are all of us missing something?
otherwise a great plugin.
Forum: Plugins
In reply to: NextGEN Gallery interfering with WP 2.8 dashboardi finally found the culprit…for me @ least – the Link Indication plugin. now its disabled and my dashboard is back!