Styled Themes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Preferential Lite] Sticky postHi stbedesantafe,
When you select static page from setting , page.php template will be used, so you need to add code to show sticky post on front page.
Add this code somewhere you want to display sticky post.
` $args = array(
‘posts_per_page’ => 2,
‘post__in’ => array(get_option( ‘sticky_posts’ )),
‘ignore_sticky_posts’ => 0
);$query = new WP_Query( $args );
while ( $query->have_posts() ) : $query->the_post();
//your code to retrieve title,content….
endwhile;`
To know more on sticky postAbout sticky postThanks
Forum: Themes and Templates
In reply to: [Preferential Lite] Remove content background colourHi 3hitsuji,
For this you need to customize style.css file, removing background color that is dominating your background image. Here i have listed some css that will help you to set background image .
#pref-top { background: none !important; } #pref-outerbox { background: none !important; } .widget { background: none !important; }You need to find out the background color that is creating problem and change them accordingly
Note: please use child theme[style.css] to add custom css, so your changes will not be lost on theme update.
Thanks
Forum: Themes and Templates
In reply to: [Pure & Simple] Thumbnail photo for blog excerpt?Hi there,
You can follow this steps to show excerpt content of post.
1> First you need to make sure you have placed content on Excerpt metabox
How to add excerpt on post2>After adding excerpt content Go to dashboard->Appearance->Customize->Basic setting-> Select Excerpt on Content or Excerpt section.
3> You can also change except length by adding length on Excerpt Length section
Finally you will be able to show excerpt content on homepage
Hope this works for you n also let us know how it goes
Thanks
Hi purplemon,
This is default behavior of browser, this works fine on relative devices.
Don’t hesitate to question us for more information.
Thanks
Forum: Themes and Templates
In reply to: [Pure & Simple] "more posts" not showing up at bottom of pageHi there,
We are not clear on your issue, As per our assumption we suggest you the following solutions:
If you want to display all post on homepage you need to select latest posts on reading setting(Go to dashboard->setting->Reading) and increase no of post on Blog pages show at most
If you want to add read more tag on each post , you need to add read more tag on edit post screen See this for reference: Use read more tag
How to add read more tagIf this doesn’t help you then please explain your issue on detail, so it will be easy to both of us to find the solution as soon as possible.
Thanks
Forum: Themes and Templates
In reply to: [Pure & Simple] Making Content Span The Width Of The PageHi there,
Here in this theme we are using bootstrap container which gives equal padding on both left and right ie 20px.
If you are still not cleared then please share screeshot of the point where your want to manage padding
Thanks
Forum: Themes and Templates
In reply to: [Pure & Simple] How do I change the banner image?Dear jwparkerb,
If you want to show widgets on specific pages, we refer you to use Jetpack Visibility plugins
Here is the tutorial for the same:
How to use Jetpack visibilityHope this works for you, best wishes.
Thanks
Forum: Themes and Templates
In reply to: [Pure & Simple] Header image resolutionHi there,
We had visited your site, there full header image is being displayed.If you want to change design of logo you need to make changes on image itsef ie[transparent_header_2560x260.png].
Let us know how it goes.
Thanks
Forum: Themes and Templates
In reply to: [Pure & Simple] different images for different pagesHi theexchangemarket,
I appreciate your help Wdesigndeb. But It will be easy to use Jetpack Widget visibility.
Take this tutorial as a reference”
Use jetpack visibilityIF you got any problems on this , please let us know.
ThanksHi there,
Remove Published on January 1, 2016 by admin Category:
This topic is alrady discussed on this reply please check this link
Remove Published on January 1, 2016 by admin Category:NEED TO REMOVE : Post Subtitle…
Add this css on child theme style.css:
`article.post header h1.entry-title {
display:none;
}`
3. INCREASE FONT SIZE…..
#content {
font-size: 0.813rem; //change font-size value as per ur requirement
}Note: please use child theme to add custom css so your changes will not be lost on theme update
Thanks
Hi there,
First you need to make sure that you have given appropriate Template attribute in style.css of child theme.
Template: pure-simple // Here you need to provide File name of parent theme
To know more on child theme, see this as a reference How to create child theme
Thanks
Forum: Themes and Templates
In reply to: [Pure & Simple] Removing menuHi there,
IF you want to remove top menu , Create a new menu from Apearance->menu
For example ,lets create empty menu and in that empty don’t select any pages and assign as primary menu theme location.Let us know if you got any problem on this
Thanks
Forum: Themes and Templates
In reply to: [Pure & Simple] Increase Header Image SizeHi there,
Please add this following css to increase your header size (header03_11_15.png);
.header-bg { padding: 2rem 0; }You can increase your padding value as per your requirement.
Note: Please use child theme to add this css, otherwise your changes will be lost on theme update.
Thanks
Forum: Themes and Templates
In reply to: [Pure & Simple] How to remove "Published by on"Hi there,
Find puresimple_posted_on() function in template-tags.php and copy puresimple_posted_on() function and paste it in to child theme functions.php file. Then find out the string you need to change in that function.
Note: Using child theme prevent your changes to lost on theme update.
Thanks
Forum: Themes and Templates
In reply to: [Pure & Simple] show featured images in archivesHi there,
For this please copy content-archive.php file from parent theme and add inside child theme directory. Then you need to add this function ie the_post_thumbnail() in your required place.
see this for reference the_post_thumbnail()Note: We refered you to add custom code on child theme so your changes will not be lost on theme update. See for reference How to make child theme ON WordPress
Thanks