Wordpress Themes - WP Forum at BFA
There will be no more development for Atahualpa (or any other theme), and no support. Also no new registrations. I turned off the donation system. I may turn the forum to read only if it gets abused for spam. Unfortunately I have no time for the forum or the themes. Thanks a lot to the people who helped in all these years, especially Larry and of course: Paul. Take care and stay healthy -- Flynn, Atahualpa developer, Sep 2021

Wordpress Themes - WP Forum at BFA » WordPress Themes » Montezuma Theme »

[SOLVED] Dual Title Colors won't apply on one page


  #1  
Old Jan 9, 2014, 07:10 AM
Ardo-Jako
 
4 posts · Jan 2014
[SOLVED] Dual Title Colors won't apply on one page

Hello.

First of all - great template!

I seem to have a problem with Dual Title colors and menu icons on one of the pages. Everything works great on all the other pages, but on one page all the headers are single color and menu doesn't display icons. Here's the page: http://fotoope.eu/repro/

Also - I am using Wordpress Facebook Like Plugin, but no FB like/share buttons are displayed..

Last edited by Ardo-Jako; Jan 9, 2014 at 07:52 AM.
  #2  
Old Jan 9, 2014, 10:33 AM
CrouchingBruin's Avatar
CrouchingBruin
 
299 posts · Aug 2010
Santa Monica, CA
For me, the titles look dual color on Chrome, Firefox, and IE, and I am also seeing the menu icons. I don't see your Facebook Like button, though.

http://i192.photobucket.com/albums/z38/CrouchingBruin/WordPress/Fotoope.jpg
__________________
My Montezuma-themed sites: ESHS Girls Basketball Team, Venice Hongwanji Buddhist Temple
Please consider making a donation to BytesForAll for their great themes!

Last edited by CrouchingBruin; Jan 9, 2014 at 10:36 AM.
  #3  
Old Jan 9, 2014, 10:35 AM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
looks fine to me. the 'Foto' is in black and the 'ope' is red. The menu icons are a house, light bulb, camera and pencil
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #4  
Old Jan 9, 2014, 11:22 AM
Ardo-Jako
 
4 posts · Jan 2014
Problem was with dropbox upload widget - it somehow broke something. But the facebook buttons are still missing...
  #5  
Old Jan 9, 2014, 12:22 PM
Ardo-Jako
 
4 posts · Jan 2014
The problem was with Simple Dropbox Upload Form plugin. It somehow messed the page up.

update: the plugin messes up the page when "Show upload progress indicators?" is set to true. My guess is, that upload progress indicator's javascript messes something up. Just in case, here's the script:
Quote:
(function($) {
/* openoverlay v4.9 */
var $w,$d;
$.fn.openOverlay = function(options) {
$w= $(window),$d = $(document)
var opts = $.extend({}, $.fn.openOverlay.defaults, options),t=0;
if (options && (options === 'close' || options.close)){
$.fn.openOverlay.closeOverlay(opts.quickClose);
return;
}

if (!$('#overlayLayer').length){
var occ,i,iLength,
h = $w.height(),$ol,
$docbody = $(document.body);
if (!h) h=100000;
$ol = $('<div id="overlayLayer" style="'+
'text-align:center; z-index:999999; width:100%; position:absolute; top:0px; bottom:0px; left:0px; right:0px;'+
' background:'+opts.sColor+';"></div>')
.fadeTo(0,'0.' + opts.iOpacity)
.appendTo($docbody);

$w.bind('scroll.openOverlay',scrollResize)
.bind('resize.openOverlay',scrollResize);
$docbody.append('<div id="overlayContentContainer" style="float:left; position:absolute; top:0; left:0;"></div>');

if (opts.closeOnClick){
setTimeout(function(){
$ol.click(function(){
$.fn.openOverlay.closeOverlay(opts.quickClose);
});
},1000)
}
fillrUp(1);
}
occ = $('#overlayContentContainer');
iLength = this.length;
return this.each(function(i) {
var $b,$c,$this = $(this);
/* enable content restoration */
if(opts.restoreContent){
$b = $('<span class="overlayPlaceHolder"></span>');
$this.after($b);
$c = $('<div class="overlayPlaceHolder"></div>');
$c.append(this).data('overlayPlaceHolder',$b);
occ.append($c);
}else{
occ.append(this);
}

if (i===iLength-1) positionOverlayContent();
});

function scrollResize(){
if (t) clearTimeout(t);
t = setTimeout(function(){
fillrUp(opts.stickyContent)},100);
}
};

function positionOverlayContent(){
var o = $('#overlayContentContainer'),
h = $w.height(),
ww = $w.width(),
mtop= (h/2 - o.outerHeight()/2);
if(!h) h=300;
if(mtop < 0) mtop = 0;
o.css({
marginTop: mtop + $w.scrollTop() + 'px',
marginLeft: ww/2 - o.outerWidth()/2 + $w.scrollLeft()+'px',
left:'0',position:'absolute',zIndex:'9999999'
});
};

function fillrUp(stickyContent){
var h = Math.max($d.height(),$w.height());
$('#overlayLayer').css({height:h+'px'});
if (stickyContent)
positionOverlayContent();
};

$.fn.openOverlay.positionContent = positionOverlayContent;
$.fn.openOverlay.closeOverlay = function(quickly){
var $ov,$dt,
$obj = $('#overlayLayer,#overlayContentContainer'),
removeit = function(){
$ov = $(this).find('.overlayPlaceHolder');
if (this.id === 'overlayContentContainer' && $ov.length){
$ov.each(function(){
$dt = $(this).data('overlayPlaceHolder');
if($dt){
$dt.replaceWith(this.childNodes[0]);
}else{
$(this).remove();
}
});
}
$(this).remove();
};

$w.unbind('scroll.openOverlay')
.unbind('resize.openOverlay');
if (quickly){
$obj.each(removeit);
}else{
$obj.fadeOut('fast',removeit);
}
};

$.fn.openOverlay.defaults = {
iOpacity:70,
sColor:'#444444',
restoreContent:false,
closeOnClick:false,
quickClose:true,
stickyContent:false
};
})(jQuery);
But the other poblem - facebook buttons, they still don't show up.

Last edited by Ardo-Jako; Jan 9, 2014 at 12:46 PM.
  #6  
Old Jan 9, 2014, 03:08 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
is this the button ou are talking about?
Click image for larger version

Name:	fbbutton.png
Views:	1863
Size:	14.1 KB
ID:	2474
as you can see…I see it.
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #7  
Old Jan 9, 2014, 03:58 PM
Ardo-Jako
 
4 posts · Jan 2014
Again, changed the plugin - solved the problem. Basically as I understand, not all WP plugins are supported seamlessly.

The only remaining problem for now is the dropbox plugin upload progress indicator. But since I can live without it (although it would be good for uploaders to see something going on while uploading their files).
  #8  
Old Jan 10, 2014, 04:55 AM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
Quote:
Basically as I understand, not all WP plugins are supported seamlessly.
basically, not all plugins are written well. many times plugins conflict with each othere and there is no way to test every combination of plugins.

But I'm glad you have your issues resolved. I'll close this thread.
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support

Bookmarks



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Dual Title Colors RobinDenning Montezuma Theme 3 Feb 11, 2013 05:55 PM
Dual Title Colour Problem simon_me Montezuma Theme 12 Nov 21, 2012 02:57 PM
No dual color on page titles? poffe Montezuma Theme 1 Sep 16, 2012 01:23 PM
[SOLVED] Changing Page Title Colors PeopleNoises Page & Category Menu Bars 4 Oct 6, 2009 06:35 PM


All times are GMT -6. The time now is 09:01 PM.


Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.