paulwpxp
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Lovecraft] An Aside Post With a Post ThumbnailThis theme displays aside post format in archive page differently.
Take a look for example
http://andersnoren.se/themes/lovecraft/category/design/The above link is archive page for post in category=design. There is a regular post and a post with aside format. The aside post format one doesn’t show title and image.
Forum: Themes and Templates
In reply to: Adjusting post category via css.First of all please make sure all the CSS customization is done via child theme’s style, or use one of the Custom CSS plugin
https://wordpress.org/plugins/search.php?q=custom+cssHere is some info in regard to body class and post class (this will answer your first question)
body_class
https://codex.wordpress.org/Function_Reference/body_classpost_class
https://codex.wordpress.org/Function_Reference/post_classTry this code (instead of what you have).
body.category-3 .entry-meta, body.category-3 .entry-content { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } body.category-3 article.post { overflow: hidden; /* clear float */ } body.category-3 .post-thumb { float: left; width: 25%; } body.category-3 .entry-header { float: right; width: 72%; }Forum: Themes and Templates
In reply to: Displaying Recent Pages NOT PostsThe simplest way is to set a static front page. In this page we can write up some introductory messages and then list pages you want to show via list pages shortcode
Forum: Themes and Templates
In reply to: Links no longer work after upgrading themeTry going to Settings → Permalinks, and make sure it’s set as before, if you are not sure just visit that page and do nothing just leave it.
Then go check the front end again see if the problem goes away.
Forum: Themes and Templates
In reply to: [theme fukasawa] child theme doesn't load parent cssMy install is fresh, there is no file moved or changed name. Maybe you could try reset everything to normal (change file name back to its original and make sure it is where it belongs). And in child theme functions.php, use the function in my first post to enqueue styesheet.
Forum: Themes and Templates
In reply to: Twenty Eleven theme not loading correctlyI think Theme Options are kept associated with theme name, so when changing theme we need to re-enter(re-set) these options.
Try visiting theme settings and reset the background.
Forum: Themes and Templates
In reply to: [Tempera] Moved to Live Site, Home Still Points to localhostThat “home” menu item is in this WordPress’s CSS class
menu-item menu-item-type-custommeaning it’s a custom link, so you can just visit Appearance > Menus and update that link to reflect your production site’s URL.
Forum: Themes and Templates
In reply to: [Ving] How to edit main.cssThis
body h1, body .h1 { font-size: 30px; }The above code even if loaded before main.css will override the code you posted.
Forum: Themes and Templates
In reply to: Sugar and Spice ThemeWe can wrap the slider shortcode in template with this condition so that it will output the slider only on front page (as set in your site).
<?php if ( is_front_page() && !is_home() ):?> <!-- echo slider shotcode here--> <?php endif; ?>Forum: Themes and Templates
In reply to: [Variant Landing Page] Menu will not appearThat’s how the theme works.
When latest posts show on front (default) the top header would shows only contact info (phone number) and will not show header menu. The header menu will show in other pages.
The default front page (latest posts) is designed to be a landing page, so it doesn’t want users to click on menu but rather read on down below and click on one of those down below elements.
Forum: Themes and Templates
In reply to: [Cannyon] Changing color of navigation text at top of pageYou can use this code to use in Custom CSS plugin
body div.mythemes-topper nav.header-menu ul.mythemes-menu-list li a { color: #fff; } body div.mythemes-topper nav.header-menu ul.mythemes-menu-list li a:hover { outline: 1px solid #fff; }Forum: Themes and Templates
In reply to: [Ving] How to edit main.cssUse selector that has more weight on specificity
Forum: Themes and Templates
In reply to: [Shamrock] Removing the line under text linksThe code didn’t work at all or it didn’t change the color? If the code didn’t make any difference at all, it means the code is not injected after theme’s css, please make sure to use Custom CSS plugin which usually inject the Custom CSS after so the code will override.
Use this code instead, it has more weight on specificity so even if it’s loaded after it still apply
body .entry-content a:not(.more-link) { background: none; color: blue; text-shadow: none; } body .entry-content a:not(.more-link):hover { text-decoration: underline; }Change blue to your own color code, the link will be underlined when hover over.
Forum: Themes and Templates
In reply to: [Variant Landing Page] Menu will not appearDid you forget to select theme location for the menu?
After saving the menu, look down below where it says Theme Location (with checkbox to select), check the ‘Header Menu’ and then click save.
Forum: Themes and Templates
In reply to: [Sugar and Spice] Site has disappearedIn this case just contact your webhost’s support asking them to help restore the site.