Allison Tarr
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Coding ErrorI think it might be on account of the anchor-link above the link that is highlighted in red. It doesn’t seem to have a closing anchor tag so when you start your next link, it is likely causing an error.
What theme are you using? Do you have a live link to it?
Generally, image sizing + cropping is controlled within your theme’s functions.php file.
Forum: Fixing WordPress
In reply to: Keeping long permalinks aliveDevjyoti: any luck in the interim? Usually sites will default to using the title of your page/post – Which permalinks setting are you currently utilizing and how do they appear?
Forum: Fixing WordPress
In reply to: Links not workingHave you tried resaving your permalinks?
Forum: Themes and Templates
In reply to: Best way to custimize the twentysixteen footer?@jzlcdh: Copying footer.php into the child theme and adding your edits would mean you wouldn’t have to re-do those customizations if there are any WP updates.
@judyvedder: Another way (depending on your comfort level) would be to add code to your child theme’s functions.php that customize your footer. This post (https://wordpress.org/support/topic/child-theme-footer?replies=23) might be helpful in guiding you?
Forum: Fixing WordPress
In reply to: how can i make my menu items from 2 rows in 1Hi Alex, did you end up getting this sorted? Your menu items appear on one line for me!
Forum: Fixing WordPress
In reply to: Category on side menuYou can edit items in your menu under the Appearance section.
https://codex.wordpress.org/WordPress_Menu_User_Guide#Customising_Menu_Items
Forum: Fixing WordPress
In reply to: Remove sidebar on post format or post categoryYou might try the plugin “What the file” (https://en-ca.wordpress.org/plugins/what-the-file/) to figure out what template you’re trying to “target” with the removal of the <?php get_sidebar(); ?>
Have you seen this resource to understand how the WP-hierarchy works? (http://wphierarchy.com/)
Forum: Fixing WordPress
In reply to: Keeping long permalinks aliveYou can adjust the types of permalinks you want in the Settings < Permalinks section.
https://codex.wordpress.org/Using_PermalinksHope that helps!
Forum: Fixing WordPress
In reply to: Changing test color for all lines in the Virtue vCard themeDo you have a link to the live site?
Forum: Fixing WordPress
In reply to: Centering a set of images in a divI would add ‘clearfix’ as a class to your .menubox and make sure it has an explicit width in px as a starting point.
Forum: Fixing WordPress
In reply to: How to add word-wrap to blog titlesWhen I look at your page, the word ‘effectively’ doesn’t get cut off at any resolution. Did you solve this on your own?
The overlapping tags is due to how the theme is set up styling-wise.
What theme are you using? What’s the web address?
Forum: Fixing WordPress
In reply to: how can i make my menu items from 2 rows in 1Do you have a link to a live site? It’d be easier to troubleshoot that way because it could be stemming for different issues in the styling (padding, margin, spacing, the ‘display’ property)
Forum: Fixing WordPress
In reply to: Making header biggerDo you have any experience editing the CSS/styles?
Your name would use the select “.menu-brand .menu-brand-marker h1” & your profession would be “.menu-brand span” – you would want to adjust the font-size on each of those.
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