cancel
Showing results for 
Search instead for 
Did you mean: 

AW Blog - Blog main page - change font size of title of posts

SOLVED
   Did you know you can see the translated content as per your choice?

Translation is in progress. Please check again after few minutes.

AW Blog - Blog main page - change font size of title of posts

Hi!

I have AW Blog on page. I have some categories and some post in these categories.

I need change post title font size.

awblog.png

Can you help me?

I need only change blog titles 

1 ACCEPTED SOLUTION

Accepted Solutions

Re: AW Blog - Blog main page - change font size of title of posts

Try once following class:

.postTitle h2 a{
font-size: 20px;
font-weight: normal;
margin: 0px;
padding: 0px;
}

View solution in original post

9 REPLIES 9

Re: AW Blog - Blog main page - change font size of title of posts

Hi @INGTECH,

I am unable to see your attachment.

BTW you can change from the css file for the BlogTitle class.
I have taken a screenshot from blog demo, you can have a look into the attachment.

Then you make changes in your theme as well.screenshot from 2019-05-31 14-58-37.png

I hope it will help you!

Re: AW Blog - Blog main page - change font size of title of posts

Hi @Vimal Kumar 

thank you for your advice. But it isn´t funcional.

I send some photos:

1) AW Blog Demo page

0111.png

2) AW Blog Demo page with change-font size - here is funcional

0112.png 3) My page

0222.png  4) My page - change font size - no change in text size, only is bigger space over title

0223.png

5) here is code from my page

0333.png

6) here is part of my code .css /.js0444.png

7) in this .css is this code 

0555.png

8) when i change font size in this code, my title is bigger, but bigger is other text too, but i want bigger only my title text (marked in this picture).

0666.png

Please help me with my problem.

 

Thank you!

Re: AW Blog - Blog main page - change font size of title of posts

I am still unable to see your attached screenshot.

Re: AW Blog - Blog main page - change font size of title of posts

i can see screenshots which i attached to this forum....

i try uploud images in jpeg

Re: AW Blog - Blog main page - change font size of title of posts

0111.png 0112.png 0222.png 0223.png 0444.png 0333.png 0555.png 0666.png awblog.png

Re: AW Blog - Blog main page - change font size of title of posts

1) AW Blog Demo page

https://ibb.co/B6y1381

2) AW Blog Demo page with change-font size - here is funcional

https://ibb.co/4Fw8R5S

3) My page

https://ibb.co/f0kVM40

4) My page - change font size - no change in text size, only is bigger space over

https://ibb.co/yYth317

5) here is code from my page

https://ibb.co/KKqdsSW

6) here is part of my code

https://ibb.co/jR2r62n

7) in this .css is this code
https://ibb.co/rKhzPbZ

8) when i change font size in this code, my title is bigger, but bigger is other text too, but i want bigger only my title text (marked in this picture).
https://ibb.co/5kLByrV

9) what i want
https://ibb.co/JQJYxwF

Re: AW Blog - Blog main page - change font size of title of posts

I found where is problem:

 

1) in blog.phtml is this code:

<h2><a href="<?php echo $post->getAddress(); ?>" ><?php echo $post->getTitle(); ?></a></h2>

2) when i use only this: <h2><?php echo $post->getTitle(); ?></h2>

  after this title is big (agree with font size which i want), but this title isn´t with link

3) in css for blog is this setup for h2:

.postTitle h2 {

          font-size: 20px;

          font-weight: normal;

          margin: 0px;

          padding: 0px;

}

4) in css for my custom template is this setup and i thing it is confused

a {

    color: #545454;

    text-decoration: none;

    font: 12px "Arial";

}

 

Can you help me? Please?

          

 

Re: AW Blog - Blog main page - change font size of title of posts

Try once following class:

.postTitle h2 a{
font-size: 20px;
font-weight: normal;
margin: 0px;
padding: 0px;
}

Re: AW Blog - Blog main page - change font size of title of posts

@INGTECH

Did it work for you?