Forum Replies Created
-
AuthorPosts
-
Matthew
ParticipantOkay, so the workaround I had before broke our contact form email. This worked for us:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
Matthew
ParticipantThey must have mod rewrite capabilities installed on their server which does not come natively. It is a third party add-on.
Matthew
ParticipantThis Worked for me. Add this to .htaccess file:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{THE_REQUEST} !^POST RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ /index.php/$1 [L] </IfModule> # END WordPress
Matthew
ParticipantThose suggestions did not work. Please see here – http://innostate.ncms.org/index.php/network/
Matthew
ParticipantI did, but I wanted to make the card responsive, so i still had to make CSS changes:
#cn-list{ width:100% !important; min-width:500px !important; } #cn-list-body{ width:80% !important; min-width:500px !important; }
I couldn’t get the map to be responsive by not setting a width or trying to set a width percentage 100%, however, what did work was to set the card_width=(100%) with parenthesis. This only works if I use it in combination with the CSS changes. I don’t know why, but it works if I use them all together.
Matthew
ParticipantI have it working now. Thanks
Matthew
ParticipantHere is my CSS styling that I use for the Market template:
#cn-gmap{ width:100% !important; } .email-name, .cn-separator, .address-name, .phone-name, .link-name { display: none !important; } #cn-market h3 { font-size: 18px; } #cn-list{ width:920px !important; } /* #cn-list .cn-clear{ clear:none !important; } */ #cn-list-head{ width:900px !important; } #cn-list-body{ width:690px !important; padding-top:10px; } .cn-entry{ font-size: 16px !important; width:690px !important; } span{ line-height:20px !important; margin-bottom:0px !important; } div#cn-list span.title { font-style:italic !important; } div#cn-market div.cn-search input#search-submit { width:50px !important; height:25px !important; }
-
AuthorPosts