Allison Tarr
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Font Color Will Not ChangeWhat color would you like it to be?
It looks like you have two h1’s currently and A LOT of padding on one.
Forum: Fixing WordPress
In reply to: Update copyright date and change site name on footer?Is your theme Headway?
It doesn’t look like it always utilizes the built-in WordPress methods.Is there a visual editor that’s provided within the theme? There might be a section to update the footer within that. If you’ve paid for it, I would reach out to them for additional support.
Forum: Fixing WordPress
In reply to: auto rotate testimonialsDepending on how it’s set up, could you use a type of conditional along the lines of the following that would direct it from the last child to the first child? (Obviously could change depending on how it’s set up semantically in your php/HTML…
if($current.is(":last-child")) { $('.thumbnails a:first-child').click(); } else { $current.next().trigger('click'); }Forum: Fixing WordPress
In reply to: Issues uploading GIF filesDid you insert it using the ‘full image size’ or a different size? The resized versions might be a stripped down version of your GIF.
Forum: Fixing WordPress
In reply to: Photo contest plugin trouble! :)Have you already contacted them for support?
http://plugins.ohiowebtech.com/forum/wordpress-voting-photo-contest-plugin-1/
Forum: Fixing WordPress
In reply to: All site content is stackingI think one of your rows in your footer will need to be set to display: inline-table with a width of 100%. Maybe .art-content-layout-row? (Not sure if you reuse that class name somewhere else)
You might need to adjust padding/margin as well to get the alignment right with your content.
Forum: Fixing WordPress
In reply to: Custom URLSYou can use a different ‘slug’ for your url than the actual title given – it autofills based on the title, but it can then be changed.
Also, you can remove pages from the nav menu so that the pages exist but aren’t linked directly.
Forum: Fixing WordPress
In reply to: How to add right aligned image NOT inside title-tagsAn H2’s default display property is “block” which causes them to take up the full-width.
If you need it to appear differently, you would either need to change the CSS settings of your H2 (which could affect appearance in other locations) or perhaps set a negative margin on that image (which again, could get dicey as it would apply more broadly then just the one immage)Forum: Fixing WordPress
In reply to: All site content is stackingIt looks like your :after pseudo elements on your header AND footer are set to display:block.
Forum: Fixing WordPress
In reply to: How can I change the location of the Share this buttonsCool! They have a guide that outlines how you can shift them.
Forum: Fixing WordPress
In reply to: Jump links not workingIt looks like you have a video element positioned absolutely over the entirety of your page?
Which two links at the top are your jump links?
Forum: Fixing WordPress
In reply to: All site content is stackingThe link provided gives a 500 error.
It sounds like maybe elements in the footer are now block rather than inline-block. Perhaps you adjusted something else that overlapped specificity-wise to affect the footer? Hard to say without seeing the site. You’re right though – sounds like a CSS issue.
Forum: Fixing WordPress
In reply to: Social Media Icons not showing (f202; f204; f410)What are you attempting to utilize for your icons? Genericons or Font-awesome?
Forum: Fixing WordPress
In reply to: How can I change the location of the Share this buttonsWhen you say ‘standard sharing settings’ do you mean Jetpack?
Forum: Fixing WordPress
In reply to: How to add right aligned image NOT inside title-tagsIf I’m understanding your question correctly, one way you could make sure would be to click over to the ‘text editor’ (next to the visual tab in the top right) and make sure that the tags are appropriately arranged.