kings3jm
Forum Replies Created
-
Forum: Plugins
In reply to: [IMPress Listings] Listings page shortcode not working properlyThe columns don’t work for me either. I’m using [listings columns=”3″] and no joy. Is there a different way to force the columns as the default?
Forum: Plugins
In reply to: [Connections Business Directory] Database ErrorThanks! Just filled out the contact form.
Forum: Plugins
In reply to: [Google Forms] Email End User CustomizationI just used your link above and it gives me the same email:
FYI –
A form was submitted on your web site:
Form: Check Box Test
URL: https://michaelwalsh.org/wpgforms/check-box-test/
Responses: N/A
Date: 2014-01-22
Time: 18:26Why are the responses N/A? This is the most important part of emailing the end user, so they can have a copy of their responses. How do we fix this? Thanks!
Forum: Plugins
In reply to: [Advanced AJAX Page Loader] Reload ScriptsCould this work with Nextgen gallery slideshows? I can’t update the nextgen gallery plugin because there is no new reload code and the update breaks the old one. Any ideas?
THANKS!!
Forum: Plugins
In reply to: [db-redirect] Mobile website within current WordPress installationCould you share your fix? There are others who need this fixed as well… Thanks!
Yes, they just updated the NextGen Plugin and now the reload code no longer works. :/ I’ve reverted the plugin back to the old version for now. Anyone figure out the new reload code??
Forum: Themes and Templates
In reply to: Resize website to browser windowI just want to point out that I think I’ve come across a quick solution to this problem. Here’s what it is, whether it’s RIGHT or not, it works across all browsers and seems to transition nicely.
Using the following css example, you have to add several media queries to get the effect right, but it works so far.
@media only screen and (min-width : 1200px) and (max-width: 1499px) {
#wrapper {
/*General*/
transform: scale(0.8);
/*Firefox*/
-moz-transform: scale(0.8);
/*Microsoft Internet Explorer*/
-ms-transform: scale(0.8);
/*Chrome, Safari*/
-webkit-transform: scale(0.8);
/*Opera*/
-o-transform: scale(0.8);
}And to apply the transition, I simply applied it to everything on my website, which made it look nice and smooth with each transition.
* {
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
-ms-transition: all .5s ease;
-o-transition: all .5s ease;
}So far so good, but we’ll see…
Forum: Themes and Templates
In reply to: Resize website to browser windowI took out all the max-width and max-height css, so nothing resizes with the browser. I inserted the code you gave me just after the first body tag in the header:
</head>
<body <?php body_class(); ?>>
<div id=”pg_body” style=”height: 100%; width: 100%;”>
Then closed the div just before the </body>Still doesn’t resize. This has been my frustration for a week now. :/ Thanks for taking a look, if you have anymore ideas, it would be so GREATLY helpful!
Forum: Themes and Templates
In reply to: Resize website to browser windowThanks for the info! I took those tags out (div for entire wrapper and the div I added for pg_body). Thank you so much for your help, any additional info you can give on the resizing would be greatly appreciated!
I will definitely work on a child theme, thank you! Right now any css edits I’m making are in the “Edit css” from Jetpack, but I definitely understand the php files would get overwritten. Child theme it is! ??
Thanks!
Forum: Themes and Templates
In reply to: Resize website to browser windowHere’s the website:
https://jillkcreative.com/onesummerday
Normally I have someone else helping me with websites (I just design content, etc.) so I’m a little unsure of how this all is working together.
Thanks!
Forum: Themes and Templates
In reply to: Resize website to browser windowHmmm, I’ve already tried a div with height and width at 100%, but it never works. Where would I put the div? I’ve tried the top and bottom of the index.php file, the div at the top of the header file, then close it at the bottom of the footer file, is there another place where this should go?
Thanks!!
Forum: Plugins
In reply to: [Advanced AJAX Page Loader] Slideshow Satellite Reload Code – Premium versionSo I noticed that the css had changed in the premium version, and putting
jQuery(‘#featured1’).satlorbit({});
made it reload the slideshows, however they are reloading at half their size. Anyone know why? This has taken several frustrating hours trying to figure out… :/
Please help!
Weird, that code was working up until a few days ago. Now it doesn’t anymore. No updates were done, anyone know why it suddenly stopped?
Forum: Plugins
In reply to: [Advanced AJAX Page Loader] Load pages with sliding effectHere’s the link to what I found, but I can’t seem to figure out exactly where this code needs to go??
Forum: Plugins
In reply to: [Advanced AJAX Page Loader] Load pages with sliding effectI’m looking for it as well. I know it can be done, I came across a thread that mentioned he had used this plugin to create it, but I can’t get ahold of the person to ask them. :/ It should be simple little hack, but I’m not experienced enough to figure this out… ??