Rachel Baker
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Using border-radius for dropdown menu in corporate themeYou are applying a background color to the submenu li element, and not declaring a background color to the
#nav li ul
element.If you correct that, you will see your border-radius
Forum: Fixing WordPress
In reply to: Jquery conflict – how to solve?1. why are you loading jQuery 1.8.2 AND 1.5.2?
2. You don’t really to declare a variable for noConflict, but if you want to you should try:
var jQuery_1_8_2 = $.noConflict();
3. A better method would be:
jQuery(document).ready(function($) { // Code that uses jQuery's $ can follow here. });
https://api.jquery.com/jQuery.noConflict/
https://codex.www.ads-software.com/Function_Reference/wp_enqueue_script#jQuery_noConflict_wrappersForum: Fixing WordPress
In reply to: Tracking visits and trafficWhat are you trying to track that Google Analytics isn’t providing you with sufficient data?
Forum: Fixing WordPress
In reply to: Using border-radius for dropdown menu in corporate themeYou are applying the border-radius to
#nav li li a, #nav li li a:link, #nav li li
Instead, you have to apply it to the ul element. Specifically, in your CSS that would be this declaration:
#nav li ul { z-index: 9999; position: absolute; left: -999em; height: auto; width: 180px; margin: 0 0 0 0px; padding: 0; }
Forum: Fixing WordPress
In reply to: Using border-radius for dropdown menu in corporate themeCan you provide a link to your site? It would make it much easier to help you with your question.
Forum: Fixing WordPress
In reply to: Analytics-oops!Where did you paste the Google Analytics information?
It looks like it is being output via the wp_footer() function.
Forum: Fixing WordPress
In reply to: How to realign database from subdomain to mainDetailed information here:
https://codex.www.ads-software.com/Changing_The_Site_URL#Changing_the_URL_directly_in_the_databaseForum: Fixing WordPress
In reply to: Assigning only certain categories to a custom postYou can do this with custom taxonomies, but not different categories.
Forum: Fixing WordPress
In reply to: Analytics-oops!The parse error is telling you what you need to know. You have a duplicate or incorrectly placed < character in your footer.php file.
For help beyond that:
can you paste the code from around line 38 of your theme’s footer.php file here?Forum: Fixing WordPress
In reply to: How to make my own Avatar for WP 3.4.2You can create an account on https://en.gravatar.com/ relating your email address with an image (your avatar).
Forum: Fixing WordPress
In reply to: How to create user homepage unique for every useri-cash,
There are many different ways to approach this. Are you looking for a possible plugin solution or broad code-based response?
If you are seeking a broad code-based response, I encourage you to break your scope down to something that is more forum answer-friendly.
Forum: Fixing WordPress
In reply to: Category Header Images in Twenty Eleven?Hello!
Short answer: it is possible but not easy without the knowledge of php just with the Twenty Eleven theme.
Possible Solution:
You can use a combination of 2 plugins:
https://www.ads-software.com/extend/plugins/taxonomy-metadata/
AND
https://www.ads-software.com/extend/plugins/unique-headers/(NOTE: you need both for category header image support)
Forum: Fixing WordPress
In reply to: load files from desk top to new wwebsiteCan you move them using FTP? That is what I would do when trying to move file directories and their sub files.
Forum: Fixing WordPress
In reply to: load files from desk top to new wwebsiteHave you tried:
Media->Add new
?
Forum: Plugins
In reply to: [Quick Chat] Paralyzing Failure