hi i want to add some text i.e. website name in from of the logo. how can i do it? also want to give it some formatting. thanks
Hello, Go to the header.php file present in your theme directory and paste the code given below in that file as shown in the image given below. Code: <div class="web_name" ><p>Enter your text here</p></div> Now, paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .web_name p { color: red; font-size: 15px; font-family: symbol; } In place of "red" you can put your color or color code. You can change the value of "font-size" as per your requirement. In place "symbol" you can put your font.
thanks for the reply. code works but i want the name in front of the logo not below it. also i want to add custom background to header portion ie bg image, how to do it?
Hello, Paste the code given below also in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .logo { float: left; margin-right: 30px; } .web_name { padding-top: 15px; } .header_container { background: blue; } In place of "blue" you can put your color or color code. This will solve your issue.