The custom cursor does not appear on pop-ups in Firefox and Safari browsers. However, everything is fine in Chrome. I have tried many things, but nothing has worked so far (on Safari, clearing the cache seems to work somewhat, but the problem quickly returns). Is this a known issue with pop-up elements (I saw an open thread about this, but I didn’t see a solution)?
You could check in the website test (menu Agence for example).
Thank you
Using
WP: 4.1.1
Customizr (w/ child theme): 3.3.13
URL in question: www.johnrothra.com
Here’s the browser versions I’ve tested on:
Chrome: 41.0.2272.101 m
IE: 11.0.9600.17691
I didn’t test on Firefox or Safari because in the past I’ve noticed that Chrome, Firefox, and Safari all display pretty much identically, with IE being the rogue.
URL: www.johnrothra.com
Child Functions.php: https://pastebin.com/gAKyFkvc
Child custom CSS: https://pastebin.com/8DWubFeT
There are three key differences I want to point out. I’ll also provide screen shots to show the differences (all on the same exact computer). BTW, I did clear the caches of both browsers before doing the screen shots. Also, I cleared the site’s cache just in case.
Issue 1: Placement of Social Icons in Menu Bar
IE: https://drive.google.com/file/d/0B4mnNZ1F-EDsM2hDcU83Uk5xcFU/view?usp=sharing
Chrome: https://drive.google.com/file/d/0B4mnNZ1F-EDsWl9GYlZVV1AzdG8/view?usp=sharing
First issue with the social icons is their placement. Notice that in Chrome they are at the far right (where they should be; in IE they are not that far right. If you see in the functions.php
file linked above, I have code that I got from Themes & Co. to remove the tagline, move the social icons to the far right, and move the menu to the left. IE does not seem to be working properly, apparently leaving the tag line section intact, but empty. That section should be gone, not just empty.
Second issue with the social icons is their color. In IE they are gray until you hover over them. In Chrome they are colored. The color upon hovering seems to be the same, though it may not be. If you look in the CSS, I have it set to make the icons colored even without hovering, not gray, yet IE seems to ignore that.
Third, and more minor, issue with the social icons is their size. In Chrome they are slightly bigger. Again, I have this set in the CSS, yet it’s different.
Issue 2: Color of Sidebar Widget Headers
IE: https://drive.google.com/file/d/0B4mnNZ1F-EDsSnJGOURRSW56ZnM/view?usp=sharing
Chrome: https://drive.google.com/file/d/0B4mnNZ1F-EDsRVd6WjRQbTQwSXM/view?usp=sharing
** These screen shots display both issues 2 and 3. **
In IE they are darker (almost blueish purple), but they are a lighter (and desired) lighter blue. In the CSS I have it set to the lighter blue. I did have them set to the darker blue/purple, but changed that weeks ago. I had never viewed the site in IE when I had them at the blue/purple color, so that should not be in the browser’s cache. Yet, there it is. I did clear both broswers’ caches, and the cache on the site (W3 Total Cache), yet IE still shows the blue/purple coloring despite the CSS.
Issue 3: Colored Bars Below Grid Post Listings
Not only does IE show them, it shows them in the dark blue/purple coloring. Again, I removed these weeks ago, yet there they are in IE. Chrome shows it correctly: no bars. Also, like other things, in the CSS I removed them, yet IE is ignoring this it seems.
I have no idea why these issues are there, but it distorts the look I want in IE, giving me something that shouldn’t be.
]]>I’m experiencing a very weird problem that literally has me stumped.
I have the following query:
$contact_args = array(
'post_type' => 'contact',
'post_status' => 'publish',
'posts_per_page' => -1,
'tax_query' => array(
array(
'taxonomy' => 'contacts',
'field' => 'slug',
'terms' => 'about-us',
'operator' => 'IN'
)
),
'orderby' => 'date',
'order' => 'ASC'
);
$contacts = new WP_Query($contact_args);
This is working fine in Firefox, but in Chrome and IE I am receiving all posts of the type “contact” regardless of their taxonomy, the “tax_query” part is simply being ignored.
When var_dumping the WP_Query object I created “$contacts” I can see the generated mySQL is different in each browser.
This is all server side, So I am completely clueless how a browser could be affecting the query?
The following vaules are all from the same var_dump, You can see the values are entered correctly in the query array of the WP_Query object, but the WP_Tax_Query object in the WP_Query object differs, as does the MySQL that is being generated.
Generated MySQL and $query below:
query:
Chrome:
[“query”]=> array(6) { [“post_type”]=> string(7) “contact” [“post_status”]=> string(7) “publish” [“posts_per_page”]=> int(-1) [“tax_query”]=> array(1) { [0]=> array(4) { [“taxonomy”]=> string(8) “contacts” [“field”]=> string(4) “slug” [“terms”]=> string(8) “about-us” [“operator”]=> string(2) “IN” } } [“orderby”]=> string(4) “date” [“order”]=> string(3) “ASC” }
Firefox:
[“query”]=> array(6) { [“post_type”]=> string(7) “contact” [“post_status”]=> string(7) “publish” [“posts_per_page”]=> int(-1) [“tax_query”]=> array(1) { [0]=> array(4) { [“taxonomy”]=> string(8) “contacts” [“field”]=> string(4) “slug” [“terms”]=> string(8) “about-us” [“operator”]=> string(2) “IN” } } [“orderby”]=> string(4) “date” [“order”]=> string(3) “ASC” }
WP_Tax_Query
Chrome:
[“tax_query”]=> object(WP_Tax_Query)#6 (2) { [“queries”]=> array(0) { } [“relation”]=> string(3) “AND” }
Firefox:
[“tax_query”]=> object(WP_Tax_Query)#353 (2) { [“queries”]=> array(1) { [0]=> array(5) { [“taxonomy”]=> string(8) “contacts” [“terms”]=> array(1) { [0]=> string(8) “about-us” } [“include_children”]=> bool(true) [“field”]=> string(4) “slug” [“operator”]=> string(2) “IN” } } [“relation”]=> string(3) “AND” }
MySQL:
Chrome:
[“request”]=> string(154) ” SELECT wp_posts.* FROM wp_posts WHERE 1=1 AND wp_posts.post_type = ‘contact’ AND (wp_posts.post_status = ‘publish’) ORDER BY wp_posts.post_date ASC “
Firefox:
[“request”]=> string(312) ” SELECT wp_posts.* FROM wp_posts INNER JOIN wp_term_relationships ON (wp_posts.ID = wp_term_relationships.object_id) WHERE 1=1 AND ( wp_term_relationships.term_taxonomy_id IN (7) ) AND wp_posts.post_type = ‘contact’ AND (wp_posts.post_status = ‘publish’) GROUP BY wp_posts.ID ORDER BY wp_posts.post_date ASC “
Any advice would be hugely appreciated,
Thanks, Jack
]]>I’ve tried clearing the cookies etc. Any help would be appreciated!
]]>In Firefox 3 an embedded video does not show under the “Space Storm alert” article In IE 7 the second article titled “This is not the Freedom Tower” does not show at all.
Why these gross differences and is there anything I can do to correct them?
Raymond Mills
]]>Or does anyone know how to do a text wrap around an image?
I’d appreciate help of any kind! Many thanks!
]]>