Responsive 4.0.0 is live!
This update includes major changes:
Here are more details about the update:
https://cyberchimps.com/responsive-4/
These changes may break your site, please make sure you try this first on the test box and then deploy it on your live setup.
You can find the migration guide here:
https://docs.cyberchimps.com/responsive/upgrading-to-4.0.0
You can find complete Responsive Documentation here:
https://docs.cyberchimps.com/responsive/
You can also find the changes to each new release in the changelog.txt file in the theme folder.
Please create a ticket for any issue that you find (theme or docs) in the support forum. We’ll be eager to fix it.
]]>I’ve read that if I were to apply a WP child theme which is responsive and use the existing theme as the parent theme, but make no changes – simply apply the responsive child theme – that the site would look and function as it now does but would be responsive, because the child theme is responsive. Does this make sense?
Seems to me I’d still have to make css and potentially html changes to the child theme, or does the responsiveness of the child theme somehow supersede the non-responsiveness of the older parent theme?
Sorry for being so naive, much appreciate the advice.
]]>I’m trying to align the header logo and navigation menu at the top of the page with the logo on the far left and the menu beside it. How can I do this? I’ve tried floating the header left and floating the menu right but I think I’m not doing it right.
Here is the code..
#header{text-align:center;float:none; margin-bottom:0px}
#logo{float:none;}
a{color#0080ff}
a:hover{color:#0080ff;text-decoration:underline;}
.menu a {
line-height: 95px;
height: 95px;
text-transform:uppercase;
text-shadow:none;
color:#FFF;
border:none;
font-family: 'Lato', sans-serif;
font-weight:normal;
}
.menu a:hover,.menu .current_page_item a{color:#0080ff;background:none;text-decoration:none}
.menu{background:none;text-align:center;}
.menu ul{}
.menu li{float:none;display:inline-block;}
ul.menu > li:hover {background:none;}
.menu .current-page-ancestor a{color:#0080ff;}
]]>An example of what I’m trying to achieve you can see at this address.
I’ve based my child theme on Responsive theme as it already has sidebar built-in, but I’m not managing to complete side menu’s setup.
So far, I’ve figured out how to register new menu(s) but I didn’t succeed to add desired menus using standard widgets.
I have also used plugins like: Advanced Custom Fields, Advanced Sidebar Menu, Custom Menu Wizard, Dynamic Sidebar Menu, Sidebar Menu Widget…
or their combination, without much success. I’m obviously missing something there…
Could someone provide a solution to this, please, or point me, at least, in the right direction for finalising the idea?
Thanks in advance.
There is a table with 3 columns , I have the following 3 problems. Somebody please help.
1) I am unable to align the table to the center. It is aligned to the left.
2) If you see inside the cells , the thumbnails also are aligned to the left. How do I move it to the center ?
3) In the 3rd column I am unable to adjust the height of the thumbnail. It’s taller than the other 2 ?
Here is my code as below.
<table class="thumbnail alignleft" style="height: 40px; border-color: #677279; border-width: 10px; ; width: 50px; height: 30px;" border="10" frame="above" cellspacing="15" cellpadding="20" align="center"><caption><strong><span style="text-decoration: underline;"><span style="color: #130fef; text-decoration: underline;">Hot Articles</span></span></strong></caption>
<tbody>
<tr>
<td style="text-align: middle;">
<a href="https://forum.wheelnmotor.com/Thread-ARTICLE-How-to-prevent-a-Tire-Burst-Blowout"><img class=" " style="vertical-align: middle;" title="How to prevent a Tire Blowout" alt="" src="https://forum.wheelnmotor.com/attachment.php?aid=139" width="50" height="30" /></a> <a href="https://forum.wheelnmotor.com/Thread-ARTICLE-How-to-prevent-a-Tire-Burst-Blowout"> How to prevent a Tire Blowout</a></td>
<td style="text-align: left;">
<a href="https://forum.wheelnmotor.com/Thread-ARTICLE-How-to-handle-a-Tire-Burst-Blowout"><img title="Tire burst handle" alt="" src="https://forum.wheelnmotor.com/attachment.php?aid=138" width="50" height="30" /></a><a href="https://forum.wheelnmotor.com/Thread-ARTICLE-How-to-handle-a-Tire-Burst-Blowout">Handling a Tire Burst Situation</a></td>
<td style="text-align: middle;">
<a href="https://forum.wheelnmotor.com/Thread-Your-Car-Battery-DO-s-and-DONT-s?pid=11#pid11"><img class=" " style="vertical-align: middle;" title="Car Battery Do's and Dont's" alt="" src="https://forum.wheelnmotor.com/attachment.php?aid=89" width="40" height="20" /></a> <a href="https://forum.wheelnmotor.com/Thread-Your-Car-Battery-DO-s-and-DONT-s?pid=11#pid11"> Car Battery Do's and Dont's</a></td>
</tr>
</tbody>
</table>
]]>A WP-newbie child theme related question.
https://martillosperu.com/
I am trying to create a basic child theme that inherits from the ‘Responsive’ theme parent.
Here is a snapshot of my child-theme:
https://martillosperu.com/wp-content/uploads/2013/08/child-theme.jpg
It is -mostly- working,
but when the child is activated the ‘Responsive’ menus become reordered , my unique logo is replaced by generic logo, etc. …
How do I create a child theme that will inherit 100% of my original theme ?
Thanks for any suggestions.
]]>Whenever I click on a “Read more” link displayed at the end of an excerpt in Archives, I am sent to a new page with the same excerpt (clicking ‘Read more’ again just reloads the page), and I never see the full-length post. Same happens when I click on the post title.
Also, on a page that lists full posts (Home), clicking full-length post’s title sends me to the excerpt.
Following advice from the_excerpt documentation, I have added this to my functions.php
:
function new_excerpt_more($more) {
global $post;
return ' <a href="'. get_permalink($post->ID) . '">Read the Rest...</a>';
}
add_filter('excerpt_more', 'new_excerpt_more');
which just changed the wording to “Read the Rest…”, but the behavior remained the same. This make me think the permalinks somehow link to the excerpt instead of the full post. Any ideas what could be wrong and how to fix this issue?
My blog: https://bit.ly/WMqZxE
Thanks for your help!
]]>I’m working on this site:
www.oxworldwide.com
And I’m trying to put some links to legal conditions, etc. on the footer. Here’s the code I got from another post I found and that displays the link on the footer:
<a href="<?php echo site_url( '/aviso-legal/' ); ?>" title="<?php esc_attr_e('aviso-legal', 'shell'); ?>"> <?php printf('Aviso Legal'); ?></a>
Ok, so now I have the links properly placed. How do I generate a page to put all the text I need to write in those sections?. Here’s what I tried and didn’t work as I expected:
Open a “new page” from the editor, write down the legal text and configure the permalink in order to open it (in this case www.oxworldwide.com/aviso-legal). Everything fine except for one thing: it displays a link on the top menu and I couldn’t find a way to hide it (it’s unnecessary as it’s already shown on the footer).
Any ideas on how to fix this?? thanx!
]]>Max
]]>