elemenno
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Fixing WordPress
In reply to: Site Showing Up Odd on Mobile/Tablet after MigrationGood catch – I didn’t notice that they loaded differently.
In wordpress, both the site address and WP Address start with www. I also tried adding the following code to the .htaccess file to take care of that issue and force www, but that doesn’t seem to be working:
RewriteEngine on RewriteCond %{HTTP_HOST} ^theproducerslounge.com [NC] RewriteRule ^(.*)$ http://www.theproducerslounge.com/$1 [L,R=301,NC]Forum: Developing with WordPress
In reply to: Nested Div IssueThanks so much! That one finally worked. I appreciate you staying on this, it was starting to get aggravating for such a little thing!
Forum: Developing with WordPress
In reply to: Nested Div IssueI added that as well to enlarge the size of the icon needed, however, it’s still removing code – so it went from this:
<div class="wrap" style="text-align: center;"><a class="btn-11 ryv-popup" href="https://player.vimeo.com/video/140364516"> <span style="font-size:40px"><div class="ion-ios-videocam-outline"></div></span> </a> </div>To this upon saving changes:
<div class="wrap" style="text-align: center;"> <a class="btn-11 ryv-popup" href="https://player.vimeo.com/video/140364516"> </a> <div class="ion-ios-videocam-outline"></div> </div>In this case, the icon does show up, but only underneath the button instead of inside of it.
Forum: Developing with WordPress
In reply to: Nested Div IssueInteresting – I tried that option and upon saving changes, it cut it down to:
<div class="wrap" style="text-align: center;"> <div class="ion-ios-videocam-outline"></div> </div>
Viewing 4 replies - 1 through 4 (of 4 total)