Allison Tarr
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Scroll Page Menu navigation – Anchor linksThere’s currently CSS that is targeting those links to get that effect.
Since all of this content is on the same page, it is applying the ‘current-menu-etc.’ to those links because —well, they ARE the current links. & therefore those styles should be applied. You would have to get more specific with selectors to override this just for the homepage.
(this is the code that is currently targeting those links on the homepage)
.fusion-main-menu .current-menu-ancestor > a, .fusion-main-menu .current-menu-item > a, .fusion-main-menu .current-menu-parent > a, .fusion-main-menu .current_page_item > a { color: #d6212a; border-color: #d6212a; }For the “_” that is being added, I’m not 100% but I think that’s a smooth scroll thing that is built in to Avada.
Forum: Fixing WordPress
In reply to: How to add separate Admin login Page/URLThis is a nice tutorial that should give you a good overview of the process. It is something best suited to someone with experience working with the php files and customization of WordPress / themes.
Forum: Fixing WordPress
In reply to: Add Image Button not workingDo you use a plugin for organizing media at all?
You might find this thread helpful as it seems to be tackling the same issue: https://wordpress.org/support/topic/problems-with-45-upgrade-add-media-not-working
Forum: Fixing WordPress
In reply to: how to get rid of white blank space after headers, footers and rowDid you get this settled? It looks pretty similar to the demo of the theme to me right now.
Forum: Fixing WordPress
In reply to: Links become snippets of linked pageWhat theme and plugins are you using?
Forum: Fixing WordPress
In reply to: Unable to login into my "wp-admin" sectionHave you contacted your host? Is there anyone else that has access to your site that might have made some updates that could have caused an error?
Forum: Fixing WordPress
In reply to: Different post/category titlesWhat theme are you using?
Do you have any experience editing the PHP files within that theme?Forum: Fixing WordPress
In reply to: Need help changing Colinear background color and menu tab color…I believe the code would be something along the lines of:
.main-navigation a:active, .main-navigation a:focus, .main-navigation a:hover, .main-navigation li:hover > a { background: #5a86a8; }(replace the “#5a86a8” with whatever dark blue / hex code you’d like to use there)
Forum: Fixing WordPress
In reply to: Image caption link to pageHow are you inserting the link into your caption? Are you doing it from within the media gallery or after you’ve inserted the image on your WYSIWYG?
Forum: Fixing WordPress
In reply to: No embedded Vimeo linksWhere would it normally be placed, underneath the ‘lola and grace’ and above ‘campaign video FW 2015’?
What’s the process for putting in the code? Are you putting it in the WYSIWYG or a custom field or…?
Forum: Fixing WordPress
In reply to: Filter search results not looking goodDo you have any experience editing theme or php files?
It’s hard to say without seeing your theme files but what is likely happening is that your theme has different styles/layout applied to the search results page versus your home page stylings. (See wphierarchy.com for more on how the WordPress hierarchy defaults bit by bit).
Forum: Fixing WordPress
In reply to: Google badge on my site does not link to GoogleHow are you inputting your social media links into your theme? (Is there a widget or something built in?)
Hypothetically, you wouldn’t want to include your own domain in the list because that isn’t where you want the link to be connected to – you want it to go away from your site so something like
http://yourbackyardoasis.net/twitter.comwould give you a 404.You would want to do something like
twitter.com/user/backyardoasis(or whatever your link/handle is).Forum: Fixing WordPress
In reply to: Image caption link to pageDo you have a live link to where this is happening?
Forum: Fixing WordPress
In reply to: Need help changing Colinear background color and menu tab color…I’m not sure what you mean in wanting to change the white background versus the periphery background (by periphery background, are you referring to the teal on each side?)
For the menu items, the menu itself is a ul, and each item is a list item (li) with a link (anchor tag). Depending on what state you’d like to shift the colour for, you would want to highlight that appropriate item. Keep in mind that WP also has class names for selecting “current menu item” etc. that you might want to adjust the styling for as well.
Forum: Fixing WordPress
In reply to: How to get website content full width with the Tesserat themeDo you have a link to the live site? It might be easier for people to help troubleshoot.