Yesterday, I changed my blog theme to “Blog Way” and I am quite happy with the overall look and feel.
However, I have a query & a suggestion to give. Here are those:
1. Since, I only have my Social icons & the Copyright text in the footer, what particular CSS code can I apply to reduce its size?
It’s too broad right now and hence the reduction.
Also, let me know if I apply this above CSS, will I ever be able to bring the footer to this default size? If yes, please guide on the CSS code.
Suggestion: – Please allow Free “Blog Way” users the option to showcase social icons of their choice in the Header part. It will surely be helpful for a lot of folks.
I hope you will take the suggestion in a positive way.
Looking forward to your response.
Cheers,
Manu Mathur
I’ve been trying to edit Viral NewsVersion: 1.0.5 WordPress theme to make it similar as on the promo picture.
If I go to “Front page sections” >> “Select the block layout” and chose any of the modules, it does not change anything on the page.
Could you help me with that?
Best,
Ben
With Custom Sidebars-Dynamic Widget Area Manager and Content Aware Sidebars-Unlimited Widget Areas you can do just about anything you want to do with your sidebars and widgets.
]]>I have a section and menu item with an anchor tag of #portfolio and a title of Portfolio. I’d like to make this section the home for all of my blog posts. This way every blog post is essentially a portfolio item since these will change frequently while the rest of the site will remain relatively static.
How can I go about accomplishing this?
Thank you in advance.
]]>i have create a customizer option for sidebar position. My question is how can i show sidebar position via url parameter like my sidebar position is selected as a right sidebar as a default but if i change url like ‘mysite.com/?sidebar_position=left-sidebar‘ i need to see sidebar to located on left side without changing option from customizer.
Thanks
Customizer option code is here
// Sidebar Position
$wp_customize->add_section( 'sidebar_position', array(
'title' => __('Sidebbar Position', 'my_textdomain'),
'description' => __('Select Sidebar Position.', 'my_textdomain'),
'priority' => '900',
) );
$wp_customize->add_setting( 'sidebar_position_option', array(
'default' => 'right-sidebar',
'type' => 'theme_mod',
'sanitize_callback' => 'candour_sanitize_sidebar_placement',
) );
$wp_customize->add_control( 'sidebar_position_option', array(
'label' => __('Display Sidebar on Left or Right', 'my_textdomain'),
'section' => 'sidebar_position',
'type' => 'radio',
'choices' => array(
'right-sidebar' => __('Right (Default)', 'my_textdomain'),
'left-sidebar' => __('Left', 'my_textdomain'),
),
) );
function candour_sanitize_sidebar_placement( $input ) {
$valid = array(
'right-sidebar' => __('Right (Default)', 'my_textdomain'),
'left-sidebar' => __('Left','candour'),
);
if ( array_key_exists( $input, $valid ) ) {
return $input;
} else {
return '';
}
}
]]>Please i need help on how to resize theme layouts, i don’t want to change the theme but i want it boxed so i can put pictures at the background.
Thank you for responding…
]]>