Hi, I would like to customize this theme. On the homepage, I need the footer to butt up against the bottom of the slider. Everything in between needs to go. Also any way to get rid of the text box on the slider? I need to also get rid of the menu bar (or be able to change the color) so that just the text is there. Also need to be able to customize the text color of those links. I need to be able to change the background color on all pages. I have the homepage customized already. Thanks in advance!
Hello, Please clarify your first issue and also share the link of your website and for your other issues, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .menu-wrapper{ background:transparent; border:none; -moz-box-shadow:none; -webkit-box-shadow: none; box-shadow: none; } #menu li.current-menu-item a, #menu li.current-menu-parent a, #menu li.current_page_parent a, #menu li a.selected, #menu li a:hover{ color:red!important; } #menu .ddsmoothmenu li a{ color:yellow; } body{ background:red; }
Thank you! Here is the website www.equinesign.us For the first issue, I would like the footer to be directly below the slider (and shadow). I have taken out all the things in that section, but now I have a blank blue space with white lines. I would to get rid of that space if possible. Also, is there any way to add a picture to the body text of certain pages? Also is there a quick way to change the text colors on all pages?
1. For this issue, Paste the code given below in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .home-content { display: none; } .slider-wrapper { margin-bottom: 0px; } This will remove the blue space with white lines from your home page. For this issue, Go to the Pages > Add New in your dashboard and paste the code given below in the text editor section. Code: <img src="Enter your image URL address here"> For the more details see the links. http://www.w3schools.com/html/html_images.asphttp://www.w3schools.com/tags/tag_img.asp 3. For this issue, Paste the code given below in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: h1,h2,h3,h4,h5,h6,a, spam,p, body, ul,li{ color: red ! important; } In place of "red" you can put your color or color code.
Hello, Can you please explain your problem with the help of screenshot, where you want to change the color, so that we can give you the exact solution.
Sorry for this issue, I meant as a background behind the body text. I tried using <body background="http://equinesign.us/wp-content/uploads/2013/08/HorseScapeNoHorsesHK.jpg"> But it shows up below the body text and not underneath (please see http://equinesign.us/about/)
Hello, Paste the following code in your Custom CSS (Appearance -> Theme Options -> Styling Options -> Custom CSS) Code: .page-container { background-image: url(http://equinesign.us/wp-content/uploads/2013/08/HorseScapeNoHorsesHK.jpg); } This will solve your issue.
Hello, Download Dynamic Headers plugin from WordPress.org and upload it. http://wordpress.org/plugins/dynamic-headers/ It will fulfill your requirements.
Hello, Dynamic Headers plugin only works for the header area. It don't work in the content area. If you want to use specific background images for specific pages then you need to catch the Id selector of that specific pages and then style them individually. Follow the instructions. 1. Go to that pages in your dashboard on which you want to show different background images in the content area and catch the page id number as indicated in the image given below. 2. Now, Paste the following code in your Custom CSS (Appearance -> Theme Options -> Styling Options -> Custom CSS) Code: .page-id-134 .page-container { background-image: url(Enter the URL address of your background image for particular page here) } In place of "134" you need to put your page id in the above code, on which you want to display another background image. And repeat the above steps for the another specific page. This will solve your issue.
Thank you. Is there any way to get rid of the extra blue bands on the top and bottom of the picture? See: http://equinesign.us/contact/ for reference.
Hello, Could you please explain your problem with the help of screenshot, what you want to remove, so that we can give you the exact solution.
Hello, Paste the following code in your Custom CSS (Appearance -> Theme Options -> Styling Options -> Custom CSS) Code: .page-id-19 .page_heading_container { display: none; } .page-id-19 .footer_container { display: none; } This will solve your issue.