mrdares
Forum Replies Created
-
Forum: Plugins
In reply to: [Image Store] Image wont display locally with MAMP…the” _resized” folder in galleries is not created…
but if created manually, and resized images put inside, it fixes the problem…Forum: Plugins
In reply to: [Image Store] Images not showing in galleryHi,
in the galleries>settings>general
if you check both
Hide “Photo” link
Hide “Slideshow” linkand leave the Hide “Favorites” link unchecked
Then the images won’t display…
It took me AGES to figure that one out… (was my theme incompatible? was there an incompatible plugin already installed? a CSS issue? Ze germanz?…)
But then when you get accustomed to the logic of these settings, it finally makes sense, those links able you to go back to the gallery display when in “Favorites” page…
It would be better to have a radio button for theses options so you could choose to hide either photo or slideshow…
Ok,
thank you.Forum: Themes and Templates
In reply to: [Clean Retina] I put in left boarder and side bar moved…Helpfor padding/margin see https://www.w3.org/TR/CSS2/box.html
Forum: Themes and Templates
In reply to: [Clean Retina] I put in left boarder and side bar moved…Help1/ try to find the class of the last widget by using “firebug” …
2/you should get rid of padding-left in #secondary and then put some padding-left on the widget…Forum: Themes and Templates
In reply to: [Clean Retina] Service icon hover effectit could be possible,
but not really as described in your link with the css, at least not without modifying the page-template-corporate-extensions.php first…take for example the social network buttons… each button has it’s own class…
.social-profiles ul li a { display:block; width:30px; height:30px; text-indent: -99999px; background-image: url("images/social-icons.png"); background-position: right bottom; } .social-profiles ul li.facebook a { background-position: 0 0; } .social-profiles ul li.facebook a:hover { background-position: 0 -40px; } .social-profiles ul li.twitter a { background-position: -40px 0; } .social-profiles ul li.twitter a:hover { background-position: -40px -40px; }
you will have to re-write as i said before : page-template-corporate-extensions.php the way it’s done for the social buttons in header-extensions.php…
seems a bit complicated for a novice like me….Forum: Themes and Templates
In reply to: [Clean Retina] I put in left boarder and side bar moved…Helpthis is, I think the original css
#secondary { float: left; font-size: 16px; line-height: 24px; margin-left: 3.06%; padding-bottom: 20px; width: 31.28%; color: #777; }
if you add padding-left, try using % (instead of px) then decrease margin-left %.
should work…ex:
#secondary { float: left; font-size: 16px; line-height: 24px; margin-left: 2.06%; padding-bottom: 20px; width: 31.28%; color: #777; border-left: 2px solid black; padding-left: 1%; }
for widget :
.widget { margin-bottom: 40px; border-bottom: 1px solid black; }
Forum: Themes and Templates
In reply to: [Clean Retina] Child theme customize.hey!
thanks for your help…
i’ll figure something out for the js file…
that said, this theme is not so easy to customize when, like me, you don’t have too much knowledge about php…in a previous post, I said it wasn’t so difficult to modify child’s theme functions.php, but i’ve changed my mind…
sometimes it works, sometimes the site becomes blank after editing the php…
lately, i’m trying to add a custom div in the header. i’m therefore copying the code from header-extensions.php to child’s theme functions.php, first trying remove_action then adding my own custom header functions, tried a thousand things… still ending with a blank page…
i gave up and ended up modifying the code in the parent theme (which worked)
really wish i did understand what i’m doing wrong…
Forum: Themes and Templates
In reply to: [Clean Retina] Child theme customize.Hello,
thanks noaneo, i did understand what to do with functions.php!
not so difficult in fact..i’m still looking to put my customized .js files and language files in my child theme though..
any idea?Forum: Themes and Templates
In reply to: [Clean Retina] Menu Title on Mobile Issuein fact it doesn’t really solve the problem since we want the ‘current-menu-item’ to be displayed, yes?
Forum: Themes and Templates
In reply to: [Clean Retina] Menu Title on Mobile Issueinfos here
https://tinynav.viljamis.com/Forum: Themes and Templates
In reply to: [Clean Retina] Menu Title on Mobile Issuehi,
to fix this, open the .js file in : theme/clean-retina/library/js/tinynav.js
locate the lines :// Default settings var settings = $.extend({ 'active' : 'current-menu-item', // String: Set the "active" class 'header' : false // Boolean: Show header instead of the active item }, options); var counter = -1; return this.each(function () { // Used for namespacing i++; var $nav = $(this), // Namespacing namespace = 'tinynav', namespace_i = namespace + i, l_namespace_i = '.l_' + namespace_i, $select = $('<select/>').addClass(namespace + ' ' + namespace_i); if ($nav.is('ul,ol')) { if (settings.header) { $select.append( $('<option/>').text('Navigation') ); }
replace ‘header’ : false by ‘header’ : true
and replace $(‘<option/>’).text(‘Navigation’) by $(‘<option/>’).text(‘my_menu’) to give a custom name to your menu..Forum: Themes and Templates
In reply to: [Clean Retina] tiny menu problemethank you,
yes it’s not an easy one I guess…
I’ve tried editing the icon as you suggested too, but it appears transparent what ever you do.. so you unfortunately still see the arrows underneath…Forum: Themes and Templates
In reply to: [Clean Retina] tiny menu problemethanks,
yes I know it is not a mistake but do you not see the dropdown menu arrows under the blue lines?
Forum: Themes and Templates
In reply to: [Clean Retina] Translate "Continue Reading"thanks,
indeed took some time, but it changed. I think it changed after emptying cache and then pressing a save button in the admin panel…according to Sanjiv regarding another matter :
https://www.ads-software.com/support/topic/content-slider-deminsion?replies=3After you make the changes also you may still not see the changes due to caching. So, go to theme options and click on one of the save all changes button of any bar. You will only then see the changes.
Hope this helps.
Sanjiv
Team Horse