paulwpxp
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Theme:Customizr] Child-theme renders only the header and logoHey now that I see your other site, I can confirm that it’s not the case of FOUC, the site only loads logo and stopped loading the nav, so obviously it has something to do with the PHP error you posted above.
Use this code in Custom CSS
/***** adjust search button font size so it fits *****/ .widget-area input[type="submit"] { font-size: 12.5px; }I see you already have Jetpack installed, so just enable the Custom CSS module and use that code in there.
Forum: Themes and Templates
In reply to: [Theme:Customizr] Child-theme renders only the header and logoThe site looks good (normal) on my end. The rendering problem sounds like flash of unstyled content (FOUC) that usually happens when the internet connection is way too slow.
Forum: Themes and Templates
In reply to: How to center font logo in headerCommercial themes are not supported here in this forum
https://codex.wordpress.org/Forum_Welcome#Commercial_ProductsRegarding logo alignment, most themes from theme market offer theme options to do that. So before making changes, please make sure you check with theme documentation first.
If it doesn’t have that option, to center align the logo just target its CSS class and use margin auto on left and right, also make sure to use proper media queries.
Forum: Themes and Templates
In reply to: Featured images sizeIs this the theme in use?
https://wordpress.org/themes/sydney/If so, next time, you can post the question in theme sub forum by visit that link and click on View support forum button on the right and post the question from there.
Regarding the featured image size; How much smaller would you want it to be? and since it will become smaller, how’d you like it to be aligned? Also would you want this change be applied to both single page and blog listing page?
Forum: Themes and Templates
In reply to: [Twenty Twelve] Banner Size Is WAY Off – How to adjust?@pwcteam2015 I just checked your site, seems you got it all figured now.
Forum: Themes and Templates
In reply to: Twenty Fourteen: Assigning featuared content to different pageThis block of code is in both index.php and page.php
<?php if ( is_front_page() && twentyfourteen_has_featured_posts() ) { // Include the featured content template. get_template_part( 'featured-content' ); } ?>So to do what you asked for, we have to do 2 things
All the changes are made via Child Theme (overriding template).
https://codex.wordpress.org/Child_ThemesIn childtheme version of index.php, and page.php, change
is_front_page()tois_home().See details here, just above the Examples section.
https://codex.wordpress.org/Function_Reference/is_homeForum: Themes and Templates
In reply to: [Twenty Twelve] Banner Size Is WAY Off – How to adjust?It’s up to you to cut what part of image, but since it’s a banner with text and image, so just make sure we have both image and text within 1020px.
Then upload the image to your WP, once upload get the image url and then go to header.php of child theme and replace the image link, then go to child theme stylesheet find that selector and use that code instead.
Forum: Themes and Templates
In reply to: How to change the font in the swell lite header titleMaybe if you could provide more info like link to site, what code you put in, how you put that code in, what header exactly, we would be able to provide more specific help.
I viewed source and it turned out that this theme simply target the h1, h2,..,h6 in CSS, so user can override the font family using that same selectors.
Forum: Themes and Templates
In reply to: Deleting Theme content from website pageIs this the theme you are using?
https://wordpress.org/themes/blackbird/If so, you could post support question by visit that link and click on “View Support Forum”, then post question there where theme author usually monitor it.
the underlying Blackbird photograph and content.
If by that you mean the logo, then you can upload your own logo and then the default one will go away.
Forum: Themes and Templates
In reply to: [Sela] Pages preview in home pageThose 3 column thing shown in demo are Text Widgets used in Front Page Widget Areas. Simply go to Appearance → Widgets, drag one Text Widget into Front Page Widget Areas, give the text widget a name (will be used as Title of that area), and then put this code below into Text Widget content.
<a href="https://selademo.wordpress.com/page-templates/full-width-page/"> <img src="https://selademo.files.wordpress.com/2014/08/mg_9371-1.jpg"> </a> <p> This is a full-width page template. It’s great for embedding a map, a large video, or a contact form. <a href="https://selademo.wordpress.com/page-templates/full-width-page/">Read more →</a> </p>Change all the links to yours, link to your page, link to your image (upload image to your WP site first and get the image link), change the paragraph to your own. Repeat the steps for the other two.
Forum: Themes and Templates
In reply to: [Sela] Front page featured image and overlay postioningThe front page in theme demo is using Front Page template, while yours is using Full width page template.
Forum: Themes and Templates
In reply to: [Twenty Twelve] Banner Size Is WAY Off – How to adjust?The banner was put in header.php of childtheme.
Here is some of that part (from view page source).
<body> <div id="page" class="hfeed site"> <header> <div class="header-div"> ... </div> <nav> ... </nav> </header> </div> <img id="page-banner" class="banner" src="/wp-content/themes/pwc/images/banner-pwc-full.png"> <div id="page" class="hfeed site">Notice the closing tag for div id=”page” and then the opening tag for div id=”page”, and this is wrong because the id should not be used more than once in the page but browser will render it just fine, any javascript that uses that id might not work properly though.
To fix the image problem, have the image cut to 1020px which is derived from 960+(30*2), the 30 is padding value used by child theme, and then use this in child theme stylesheet
.banner { display: block; height: auto; margin: 0 auto; max-width: 100%; }To also fix the html problem, get rid of extra closing and openning div id=page, then move the img tag inside <header> tag just before the closing </header> tag, then work on the CSS.
We can center align the page using this code (via Custom CSS plugin)
.site { margin: 0 auto; }Also it helps to use light gray body background color (which is theme’s default) instead of black.
Forum: Themes and Templates
In reply to: [Black Rider] different widgets to different pageWe can control appearance of widgets using Custom CSS (display block / display none) targeting the widget in different post/page via WordPress body class.
Or use plugin (there are many of them, this is just for example).