A Few Questions

Hi

First of all I would like to thank you for this amazing theme.

Please can you help me with those questions?

  1. How can I hide the texts on category and let show only the image and title?

This is the website I am talking about: http://www.wingscanada.com.br/category/blog/

  1. Is it possible to change padding size of div.entry-content to 675?

  2. Is is possible to add ads at the top of the post content?

Thank you so much!

Hi there

Hope you are having a good day and thank you for your question

  1. I’m sorry but looks like this is not possible, even with CSS, sorry
  2. you can use this CSS for paddings:

.entry-content {
padding-top: 20px;
padding-bottom: 20px;
}
3. Well, maybe its possible but not with theme options and functions you have to find third party ADS related plugin which can place ads in various places of the website

Thanks!
Colorlib Support Team

Hi Noda

Thank you!

I am sorry, I meant:

  1. How can I change the shapely-content to 675 instead of 720?(I am attaching an image)

  2. Is it possible to let the menu sticky for the mobile version as well?

  3. How can I let the blog posts as in your model? (I am attaching an image)

  4. How can I add page numbers for the blog posts as in your model? (I am attaching an image)

Thank you!
Danielle

Hi

I solved items 3 and 4.

Kindly just confirm those 2 questions:

  1. How can I change the shapely-content to 675 instead of 720?(I am attaching an image)

  2. Is it possible to let the menu sticky for the mobile version as well?

Thank you!

Danielle

Hey there,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

/*adjust width to 675*/
div#primary {
    width: 60.3%;
}
aside#secondary {
    width: 39.5%;
}

Sticky menu:
Try this pluign: Sticky Menu, Sticky Header (or anything!) on Scroll – WordPress plugin | WordPress.org

Best regards,
Support.

Hi

Thank you so much.

I have one more question:

I would like to use only one footer area and make it full width.

I am asking it because I intend to use Visual Composer and Content Block plugin in the footer area 1 so that the content posted there will appear on all of posts and pages.

Hey there

“I would like to use only one footer area and make it full width.” - please add at least one element in the first footer widget and then i will provide css code to make it full width

Hi Noda

Thank you!

I included the content block on footer area 1.

Hello there,

You can use the following CSS code to make the footer full width by going to Appearance > Customize > Additional CSS and pasting it there.


/*Full width footer*/
.col-md-3 {
    width: 100%;
}

Best Regards,
Support

Hi

Thank you so much! It worked!

I have one more question:

How can I hide the “read more” button? http://www.wingscanada.com.br/category/blog/

I tried this:

.more-link { display: none; }

But it didnt work.

HI there

try this one:

post-content .more-link {
display: none;
}