Hello ! How can I remove the main text of those four featured headers at the bottom of the homepage? I had support remove the photos and titles but the 4 main text boxes at the bottom of the home page are still there? Please reference site http://69.195.124.66/~coastaz9/ And attached is a photo of the text boxes I want removed. Also, the logo at the top of my page was centered and since the last time I had support fix an issue they moved it to the far left, how can I center the logo at the top of each page again? Thank you !!
Hello, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .one_fourth p { display: none; }
Thank you that worked! As to my other question : How can I center my logo at the top of my homepage and every other page, this was accidetly un-centered and moved to the left side of the top of all of my pages last time I had support fix something. It was originally centered. Thank you
Hello, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .logo img{ margin-left:170px; } @media only screen and (max-width: 960px) and (min-width: 768px){ .logo img{ margin-left:100px; } } @media only screen and (max-width: 767px) and (min-width: 480px){ .logo img{ margin-left:10px; } } @media only screen and (max-width: 480px){ .logo img{ margin-left:5px; } } Adjust its value as per your requirements.