Forum Replies Created
-
AuthorPosts
-
ryantownleyMember
You have a couple options. One would involve making your existing customized theme responsive by adding media queries. There is quite a bit of work involved in doing this which sounds like what you were quoted on.
The second option, and one I would recommend, is to simply use the Enterprise Pro theme which is already responsive. You can then customize it design wise to fit your brand. You are going to be left with more up-to-date code and a more modern look & feel. Also think about how much you really need to stray from the Enterprise Pro design out-of-the-box. Many times, I see people opting for customizing an existing theme so heavily that it would have probably made more sense to just have a custom theme built. My feeling is that an off-the-shelf theme like Enterprise Pro is already expertly designed and ready for your content.
ryantownleyMemberI'm getting the following error when trying to reach your website...
Forbidden
You don't have permission to access /wp/ on this server.Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
ryantownleyMemberHey, I liked your "Tap to Call" angle, Ted! I dabbled with that just recently using a link class for the mobile number instead of a div but otherwise pretty much the same CSS in case you want to add that functionality, fotodog13...
<a class="phone-mobile" href="tel:5555555555">Tap to Call (555) 555-5555</a>
Example: http://websiterevitalize.com
ryantownleyMemberYou can do this by using (2) different div classes in the header widget area and displaying or hiding via CSS and media queries. That is the gist of it. Here is some real basic code that might help.
Try this in your header widget...
<div class="phone">(555) 555-5555</div>
<div class="phone-mobile">(666) 666-6666</div>This in your style sheet...
.phone-mobile {
display: none;
}
@media only screen and (max-width: 480px) {
.phone {
display: none;
}.phone-mobile {
display: block;
}
}April 14, 2013 at 5:51 pm in reply to: How to Remove Page Title Widget From Specific Pages and Posts #35492ryantownleyMembereleven40 has a special "Page Title" widget area which is like a large tagline that shows above the content/sidebar wrap. It's a confusing name for that area.
I use the Display Widgets plugin to show/hide widgets on certain pages: http://wordpress.org/extend/plugins/display-widgets/
-
AuthorPosts