Gnanajothi Palanichamy
asked 11 years ago

Hi DW Team,

i would like to make some changes in single post like

  • i dont want featured appearing in the start of the post
  • there is two column below that one is sharing along with tag details, and there is main column to display post details.
  • Here my ask is i would like to make it as one column and sharing to appear in horizontal way at the top and dont want related Tag details to appear.

Could you please help me with what code i should remove and replace to effect these update?

appreciate your response.

 

Thanks,

Admin – Miniidlydotcom

3 Answers
DominicStaff
answered 11 years ago

Please check the image below to know this is what you wish to change on the single post?

see the screenshot: http://imgur.com/vL4gPuR

If yes, please follow the instruction:

Firstly, Log in to Dashboard >>Dashboard > Theme > Customize > add the following code to the “DW Focus header script”

 <style>
.single-post .entry-thumbnail {
display: none;
}
.single-post #secondary {
display:none;
}
#main > .container > .row {
background: none;
}
.single .site-content > .post .entry-content {
max-width: 830px;
}
.single-post .tag-action {
display: none;
}
</style>

 

Next, you can open the single.php file in the folder path “\wp-content\themes\dw-focus” / line 13. and replace the following code :

 <div id="primary" class="site-content span9">

with new code:

 <div id="primary" class="site-content span12">

Hope this helps !
Regards,
Dominic

Gnanajothi Palanichamy
replied 11 years ago

Hi Dominic,

Gnanajothi Palanichamy
replied 11 years ago

I need to to remove that left side column in the post which has Social share and Tag cloud option

Gnanajothi Palanichamy
replied 11 years ago

Request you to provide me with code changes

Gnanajothi Palanichamy
replied 11 years ago

Hi Dominic,

Gnanajothi Palanichamy
replied 11 years ago

Could you please respond to this my change needs. One more thing i would like to ask in my site single page font is different than Main and category pages – How should i rectify this?

DominicStaff
answered 11 years ago

To remove that left side column in the post which has Social share and Tag cloud option. you can log in to Dashboard > Theme > Customize > General Settings. add the following code in the “DW Focus header script”


<style>
.single .site-content > .post .entry-action {
    display: none;
}
.single .site-content > .post .entry-content {
    max-width: 770px;
}
</style>

Also, To change the font on the theme,

Firstly, Go to site here to find the font you would like to use: http://www.google.com/fonts/

Secondly, open template.css file , then find “Bitter” and “font” and replace with your font as you want.

@import “http://fonts.googleapis.com/css?family=Bitter”


.entry-title {
font-family: ‘Bitter’, serif;
}

In addition, you need to find the class that you want to rename your font .

Example:

@import url(http://fonts.googleapis.com/css?family=Hanalei);


.entry-title {
font-family: ‘Hanalei’, cursive;
}

Hope this helps !
Regards,
Dominic

DominicStaff
answered 4 years ago

You are welcome. If you have any issues or question you can let me know. we will check and help you resolve it.

Powered by DW Question & Answer Pro