Allison Tarr
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Customizing Post Archive size or content??To change the thumbnail size generated across the board, I would recommend starting here (https://codex.wordpress.org/Post_Thumbnails) to learn more. After changing that in functions.php, you would need to regenerate your thumbnails (via a plugin) to show those changes.
Something to double check is that your img are currently set with a typo in their ‘height’ – it should be auto but there’s a number stuck in there on accident. Fixing that might help!
Taking out the descriptions would be a theme-based php change.
Have you contacted the creators of the theme directly yet? (http://templatevisual.com/)
Forum: Fixing WordPress
In reply to: Sort tag by dateI think get_the_term_list always will ouput it in alphabetical order. An alternative would be to use wp_get_post_terms(); (https://codex.wordpress.org/Function_Reference/wp_get_post_terms) which would allow you to pass an argument of how you want the results to be ordered.
Forum: Fixing WordPress
In reply to: Smiley option not showingWhat is not appearing the same in your version of the menu? Is that checkbox not listed under “Formatting”? (https://codex.wordpress.org/Using_Smilies)
Forum: Themes and Templates
In reply to: how to align header image with proper fitIt looks like one issue might be that you commented out some closing </div>’s? That’s how it appears when I inspect through the browser, anyway.
Sizing for your image – the CSS is sizing it at 100% width, height: auto (to keep fitting the ratio) – the image itself is 1200+ px so to remain 100% but fit the smaller screen, it will shrink/become too small. There are probably a few different strategies to achieve what you want but it would depend on your comfort level with editing CSS &/or PHP?
Is there an alternative way to achieve what you want within this theme? Or maybe it would be easier to utilize a theme that has this built-in/customizable?
Forum: Fixing WordPress
In reply to: Link Twitter doesn't workThat’d be too easy 😉 – Right now it’s set to just your username – when you set it with the twitter URL (https://twitter.com/NarimenParis) does it show up as “http://blog.narimen.com/https://twitter.com/NarimenParis”?
Forum: Fixing WordPress
In reply to: Feed only showing post titleThis might be a good starting point: http://www.paulund.co.uk/add-custom-fields-to-rss-feed
You would want to customize it to the specific custom fields that you’re trying to pull and combine it with using the is_feed() conditional (https://codex.wordpress.org/Function_Reference/is_feed) in your functions.php file.
Forum: Fixing WordPress
In reply to: Feed only showing post titleWhat theme are you using? Have you tried asking in their specific support forums? (They might be able to assist with more familiarity with the set-up)
Forum: Fixing WordPress
In reply to: Link Twitter doesn't workI’m not familiar with it as a plugin but maybe there’s a setting within the plugin that needs to be reconfigured?
Forum: Themes and Templates
In reply to: help with responsive designThat site also utilizes bootstrap – is that something you’ve integrated into your own layout?
Forum: Themes and Templates
In reply to: how to align header image with proper fitIt might be an issue of the initial image size conflicting with the CSS size settings. Is it up live somewhere?
Forum: Fixing WordPress
In reply to: Link Twitter doesn't workAre you using the Share-aholic plugin for your social media or are you relying on something built into the theme?
Forum: Fixing WordPress
In reply to: Change opacity of Navigator and of some thingsI’m not 100% positive but I think you’ll find what you’re looking for within the dark.css file. It depends on how the theme’s creators have organized it.
If you’re not using a Child Theme, and if the theme doesn’t have a designated section of the dashboard for CSS modifications then do the following:
- Install this Custom CSS Manager plugin http://wordpress.org/plugins/custom-css-manager-plugin
- use its “CSS Code” section of the dashboard to hold your CSS modifications
- (put your CSS code in)
- Save
Alternatively use your Child Theme style.css file to hold your CSS modifications
Forum: Themes and Templates
In reply to: [Virtue] Home Icon Menu ImagesI think you could add CSS for:
.home-iconmenu img { height: 400px; }(Or whatever height you want your images to be, be aware of aspect ratio, etc.
Forum: Themes and Templates
In reply to: [Twenty Fifteen] Reduce Width of Margins?Do you have a link to the page in how you’re using it currently?