paulwpxp
Forum Replies Created
-
hmm it sounds like you are confusing single post with post archive page.
- In single post, the pagination is for Next Post and Previous Post.
- For post archive page, the pagination can show 1 2 3 and so on.
It doesn’t make sense to apply the archive pagination into a single post page because for a post it always belongs to many archives (by time, by category, by tag).
Forum: Themes and Templates
In reply to: [Fifteen] Remove Navigation MenuCan anyone elaborate on how to remove the menu in the middle of the header?
The markup for that menu has this id
#header-2, see Line#60
https://themes.trac.wordpress.org/browser/fifteen/1.0.0.8/header.php#L60So we can just put this in Custom CSS plugin to display none it.
#header-2 { display: none; }In case of Jetpack plugin already in use, just enable the Edit CSS module and use the code there.
Forum: Themes and Templates
In reply to: [Aries] How to change font size for taglindThat code can not do anything else other than changing font size on the .site-description
Forum: Themes and Templates
In reply to: How do I box off widgets in the sidebar?@havelesstravelmore Yes, just click on my profile pic for it.
Regarding the theme, it’s just that some themes are built on frameworks that try to do a lot of things which is good for users in general, but it comes with the price that new users need to learn how to use that particular theme instead of spending time and energy on how to use WordPress.
So I would suggest using a theme that’s built as simple as possible. The new Twenty Sixteen theme is good, almost all the themes from Automattic are good, also a lot of themes hosted here are good.
Forum: Themes and Templates
In reply to: [Aries] How to change font size for taglindPlease make sure the all theme files are untouched, reverse all the changes made directly to theme files to original. The point is that we will only make changes via Child Theme (or via Custom CSS plugin), so that when we update theme, we won’t lose all the modifications.
Install one of these Custom CSS plugin.
https://wordpress.org/plugins/search.php?q=custom+cssMaybe this one
https://wordpress.org/plugins/simple-custom-css/and then use this code in it
/** make tagline bigger in big screen **/ @media only screen and (min-width: 640px) { .site-description { font-size: 30px; } }Forum: Themes and Templates
In reply to: How do I box off widgets in the sidebar?First of all, see if theme offers Custom CSS option. If it doesn’t, just install one of these Custom CSS plugin.
https://wordpress.org/plugins/search.php?q=custom+cssMaybe this one
https://wordpress.org/plugins/simple-custom-css/and then use this CSS code in it (just copy and paste)
.fl-node-562ce2f9eee42 .fl-col-content { background: transparent; } .fl-node-562ce2f9eee42 .fl-col-content .fl-module-content { margin: 0; } .fl-node-562ce2f9eee42 .fl-col-content .widget { background-color: rgba(198, 194, 194, 1); padding: 20px; margin-bottom: 20px; overflow: hidden; }Personally, I wouldn’t use the kind of theme that you are using, it’s based on overly complex system to do simple stuff.
Forum: Themes and Templates
In reply to: [Swell Lite] Hide site titleFor accessibility, use this CSS to hide thing visually but keep it for screen reader. To use, just replace or add in the selector (class, id) of element intended to hide.
/* * Hide only visually, but have it available for screen readers: * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility */ .visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }Forum: Themes and Templates
In reply to: Unable to edit theme style using child themeThere is another style injected in the
<head>after child theme stylesheet. It also contains style property for .top-icons, and this is why the CSS code in child theme stylesheet with exact same selector doesn’t work.The workaround is to use a selector with more css specificity, like this for examle
body .top-icons { background: #fff; border-bottom: 1px solid #eee; margin-bottom: 25px; }But it’s better to fix the problem at the root cause by figuring out where that (injected) style comes from and then remove that part. From viewing source, it just uses
<style type="text/css">, so you have to look around in theme option settings, it should be there because that style also contains lot of common thing in theme. If it is not in theme option, it could be in a custom plugin.Also on a sidenote, there are double child theme stylesheets enqueued in the
<head>, so please take a look at child theme’s function.php and fix it there.Forum: Themes and Templates
In reply to: [Sydney] How to add custom block near menu bar?Right now there is a text widget with code to login to yandex in that sidebar area, so I guess what you are asking here is a login form to your WP site?
If that’s so you are looking for a sitebar login widget.
You can pick one you like here
https://wordpress.org/plugins/search.php?q=login+widgetForum: Themes and Templates
In reply to: [Hueman] "Site Identity" questionUse this code in Custom CSS option
.home .page-title h2 { visibility: hidden; }If theme doesn’t come with that option, install one of those Custom CSS plugin.
https://wordpress.org/plugins/search.php?q=custom+css
On a sidenote, the Site Title should be “Let’s tread water” and “Food, Culture & Life” should be Tagline, but if you want all of that as Site Title, be sure to put in the Tagline, don’t leave it empty, pick one that has SEO value to the site. It’s important that both Site Title and Tagline is not empty.
Forum: Themes and Templates
In reply to: How to lower background under navigation menu?First of all, for longevity of the project please do not edit theme files directly. Only apply modifications via Child Theme or Custom CSS plugin, this way we will be able to update theme without losing all the modifications.
So the first step is to reverse all the changes made directly to theme’s stylesheet, or just reupload a fresh copy of it.
Hey I’d like to know how to lower the background of my webpage (the wood pattern) so it’s bellow the logo and navigation menu.
We can achieve that by applying the site background color (white) to the top nav area using this code (via Child theme stylesheet or using a Custom CSS plugin)
@media screen and (min-width: 1000px) { .hero-image .site-header { background: #fff; } }but since the font color in nav area is white, so you will have to make change to the menu item color too.
Just delete one whole line of code, the 2nd line from bottom.
It’s the one that’s started with @media screen and (min-width: 955px)
Forum: Themes and Templates
In reply to: New Development@silja-jonsson I’m glad you got it working 🙂
Anyway, when you done with the design and move on to transfering it to a WordPress theme, there will be quite a lot of adjustments needed.
Web developer tool is your friend. It’s used primarily to inspect the elements and get the right CSS selector.
Chrome built in web dev tool
https://developer.chrome.com/devtoolsThere is also Firefox one, and also Firefox addon called Firebug.
Forum: Themes and Templates
In reply to: [ColorWay] Blog on a separate pageThere is no need for a theme to include a Blog page template, unless users want something special added to blog page.
We can have Blog page point to its own separate page other than front page.
Go to Administration > Settings > Reading panel
and see setting details here
https://codex.wordpress.org/Creating_a_Static_Front_Page#WordPress_Static_Front_Page_ProcessEdit: removed wrong answer to different topic 🙂