How to make the blog post title align with the picture

I just want to know how to make the post photo align next to the title so the photo will be on the left side and then the title will be next to it all in one row because now the title is in the top and then the photo will come under it .

another thing i want to add a line to separate the blog posts

thanks

Hi there,

We will be happy to suggest proper CSS code to achieve the look you like, but you need to give us the URL of the page to check and give you proper code.

If needed you can use the Secure Note functionality of the post to keep things confidential.

Thanks for your reply, please check the notes
Regards

Hello There,

Thanks for providing the url of your site. Do you want something like this?

If that is the case, pelase do the following:
1.) Please remove this css code

.entry-featured {
    width: 300px;
    height: 135px;
}

2.) And make use of this code:

@media(min-width:980px){
  .blog .entry-featured,
  .archive .entry-featured {
    float: left;
    max-width: 33%;
    margin-top: 0;
  }

  .blog .entry-header, 
  .archive .entry-header, 
  .blog .entry-content,
  .archive .entry-content {
    float: right;
    width: 66%;
    text-align: left;
  }
}

We would loved to know if this has work for you. Thank you.

thanks alot i appreciate your help

You’re welcome!
We’re glad we were able to help you out.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.