Hi Support, I'm new to wordpress and really like this theme but have a few issues. 1) How can I remove the text are to the right of the lofo. Where You put contact info. 2) How can I change the color of the footer are where the social widgets, contact info is. I would also like to remove the text join us on face book to say something different How can i do that? 3)Can I add some oppacity to the content area in the slider? If so, how. 4) can i link the contact form to my gmail account. Thanks for your help.
Hi Pratam, For your first and third issue, paste the following code in your custom css Appearance -> theme options -> styling options -> custom css Code: .header-info { display: none; } .flex-caption { background: hsla(0, 0%, 0%, 0.3); } For your second issue: a) If you want to change the color of footer area then paste the following code in your custom css Code: .footer-wrapper { background: blue; } .footer { background: blue; } inplace of 'blue' you can put your required color or color code. b) If you want to edit the text "join us on facebook" in the footer widget area then go to the sidebar-footer.php file(Theme directory -> sidebar-footer.php) and follow the instruction shown in the image given below You will not get theme directory in your dashboard. You can edit sidebar-footer.php file through FTP. Open your Theme directory (through FTP) Download sidebar-footer.php file from there, Edit it, Then again upload it. For your fourth issue, go to the General setting panel(Settings ->General ) in the dashboard and follow the instruction shown in the image given below Thanks.
Thanks for your help! I am also having a spacing issue with the widgets inside the footer. See attached image. How can I correct this. I would like to have my logo in the center and of the header and place a background color in the header. If i want to change the color of my nav menu to a custom color how can i do this? Thanks
Hi Support, I would like to add rounded edges to the main container. What would be the code? I used this but it didnt work. } .main-container { border-top-left-radius: 10px; border-bottom-right-radius: .5em; border-top-right-radius: .5em; } I also would like to change the color the black bar below the footer. see attached image please How can i add a color to the header where the logo is? Also, how can i add some text to the header area? Thanks Alot!!
For the spacing issue in the footer widget area, go to the sidebar-footer.php file in the theme directory and edit the file as shown in the image given below For the logo issue and background issue, go to the header.php file in the theme directory and edit the file as shown in the image given below now, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .header .logo { text-align: center; margin-bottom: 40px; } .header { overflow: hidden; background: teal; } For the color issue in navigation menu, paste this code in Custom CSS Code: .menu_wrapper { background: blue; } This will solve your issue. Thanks.
For the bottom footer color change, paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .footer_bottom { background: blue; } this will solve your bottom footer color issue. For the header background color issue, see the solution given in the previous reply. Thanks
Unfortunately there isn't a way to do that with our theme unless you custom code something up. Sorry.
Hi Support, What is the class to change the text color inside the caption box on the slider? Right Now it's gray. Also, how can i remove the search bar and have the nav menu be centered? Thanks Alot for your help.
For your first issue, paste the following code in your custom css Appearance -> theme options -> styling options -> custom css Code: .flex-caption h1 a { color:blue; } .flex-caption p { color:red; } Inplace of red and blue you can put your required color or color code. For your second issue, Go to the theme directory and open the header.php file and edit the code as shown in the image given below. Thanks, Piyush
Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: #menu li.current_page_item a { margin-left: 200px; } Adjust the value of margin-left. NOTE: If you will add more pages(menu) then you will need to adjust the value of this margin-left again .