Forum Replies Created
-
AuthorPosts
-
Skandha
Participant@lenatime: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.
.custom-logo-link { margin-left:50px; } #masthead { padding-bottom:0px; } #content .wrapper { padding-top:0px; } #content { padding-top:0px !important; margin-top:0px !important; } #site-branding { padding-bottom:0; } .entry-content p { text-align:center; }Let me know if this what you want!
Kind Regards,
SkandhaSkandha
Participant@wolpertinger: Sorry for the late reply. Firstly you will need to create a child theme for this. If you do not know how to create a child theme then you can use Generate Child Theme Plugin.
Go to => Child Theme Folder => functions.php and add the following Code.add_action( 'init', 'create_post_type' ); function create_post_type() { register_post_type( 'deals', array( 'labels' => array( 'name' => __( 'Deals' ), 'singular_name' => __( 'Deal' ) ), 'public' => true, 'has_archive' => true, ) ); }You can replace deals with the name of your custom post type.
You will get the custom post type in the admin area. You can add posts to it and display it as an archive page.Let me know if this helps you out.
Kind Regards,
SkandhaSkandha
Participant@lenatime: Please post in your site URL and also can you please explain which spacing you would like to eliminate and also on images you would like to have left and right borders?
Kind Regards,
SkandhaSkandha
Participant@nicolasbassand: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.
To change of the color of date.single-post .entry-meta, h1.entry-title { color:#fff; }To separate the categories with ‘>’
Replace<?php catch_wheels_entry_category(); ?>in the template-parts/content/content.php file in the child theme folder with<?php the_category('>'); ?>To change the font of the comment title
Go to => Appearance => Customize => Additional CSS and add the following CSS Code.#comments #reply-title { font-family: Josefin Sans; }Let me know if this works out!
Kind Regards,
SkandhaSkandha
Participant@ahhyeah: You will need to find a suitable plugin from the WordPress Plugin Repository to add unique header image to Category pages.
Kind Regards,
SkandhaSkandha
Participant@medialinealbus: I don’t think you can add an hyphen to separate the menu items. I feel adding a border to separate the menu items will look better.
Go to => Appearance => Customize => Additional CSS and add the following CSS Code..nav-primary .menu-item { border-right:1px solid black; }Let me know if this solves your issue!
Kind Regards,
SkandhaAugust 6, 2018 at 2:50 am in reply to: Toppage shows slider picture and featured content of demo version #151065Skandha
Participant@sumiko: You seem to have removed the video from the page.
The following CSS Code should have solved the issue.
Go to => Appearance => Customize => Additional CSS and add the following CSS Code..entry-content p { width:560px; }Let me know if this works out!
Kind Regards,
SkandhaSkandha
Participant@mirandaweathers: Please post in your site URL so that I can look into the issue and provide you possible solutions.
Kind Regards,
SkandhaSkandha
Participant@violetdeb: You will need to try decreasing the size of the logo in mobile view. I think that way you will be able to solve the issue.
Kind Regards,
SkandhaSkandha
Participant@taulepton: Please try disabling all your plugins and check if this solves the issue.
Let me know if the issue persists!
Kind Regards,
SkandhaSkandha
Participant@leenajacob: Please let me know which font you want to use for the paragraph text then I can provide you the CSS Code to use that font.
Kind Regards,
SkandhaSkandha
Participant@dannyken: Glad you were able to fix the issue. Have a good day! 🙂
Kind Regards,
SkandhaSkandha
Participant@leenajacob: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.
p { font-family:ravie; }You can change the font according to your requirement.
Let me know if this is what you want!
Kind Regards,
SkandhaAugust 5, 2018 at 12:07 pm in reply to: Updating header font style and centering text on 3 modules #151036Skandha
Participant@ruthmaramis: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.
/*To change font of Our clients */ .entry-content h1 { font-family:"Acumin Pro Condensed", sans-serif; } /* To add border to the slideshow */ .slideshow-window { border:3px solid grey; }Let me know if this works out!
Kind Regards,
SkandhaSkandha
Participant@vraba: Glad I was able to help you out! Have a good day! 🙂
Kind Regards,
SkandhaSkandha
Participant@dannyken: Please post in your site URL so that I can look into the issue.
Kind Regards,
SkandhaSkandha
Participant@passiveincomeguys: Please post in your site URL so that I can look into the issue.
Kind Regards,
SkandhaSkandha
Participant@mcgyver: For this you will need to find a suitable plugin from the WordPress Plugin Repository which lets you create folder and arrange media files.
Kind Regards,
SkandhaAugust 5, 2018 at 2:23 am in reply to: One post for: search field, button text color, footer text edit, category line #151009 -
AuthorPosts
