Title: MX4 Theme (4 questions)
Last modified: August 18, 2016

---

# MX4 Theme (4 questions)

 *  [doctorbean](https://wordpress.org/support/users/doctorbean/)
 * (@doctorbean)
 * [20 years, 9 months ago](https://wordpress.org/support/topic/mx4-theme-4-questions/)
 * Its me again….sorry.OK I’m working on a MX4 theme and would like to make some
   changes.
 * 1.I’ve created my own header and would like to hide the blue Alexanders Videos
   type and make the new header clickable.I know there is a tutorial for this but
   I need it simplified even more…I must be stupid.
 * 2.The brown “HOME” strip I would like to change its colour and also change the
   HOME type colour.
 * 3.In the sidebar the headers I would like to replace with graphics Ive created
   or even just change the brown theme of the box’s.
 * 4.And finally I would like to increase the blavk stroke going down the page can
   this be done.
 * Heres the screen shot.
 * [http://alexandersvideos.com/images/avpage.jpg](http://alexandersvideos.com/images/avpage.jpg)
 * Sorry if this seems demanding.
 * Appreciate the response.
 * thanks,
 * Alexander
 * [http://alexandersvideos.com](http://alexandersvideos.com)

Viewing 11 replies - 1 through 11 (of 11 total)

 *  [oriecat](https://wordpress.org/support/users/oriecat/)
 * (@oriecat)
 * [20 years, 9 months ago](https://wordpress.org/support/topic/mx4-theme-4-questions/#post-251921)
 * Most of what you are trying to do involves changing the css. Are you familiar
   with css at all? If not, then you might want to study up a little bit. [http://codex.wordpress.org/css](http://codex.wordpress.org/css)
 * #2 – this is in the style.css file under #navcontainer ul, and it is the background-
   color. Change the number to the color you want it to be.
 * Then for the actual Home link, you would need to change the color in #navcontainer
   ul li a.selected
 * #3 – The text in the rounded boxes right now is coming from the #sidebar h2. 
   If you want to use an image instead, you will need to remove the h2s from the
   sidebar.php and just insert the img code for where your image is.
 * Hopefully that will get you started 🙂
 *  [gutielua](https://wordpress.org/support/users/gutielua/)
 * (@gutielua)
 * [20 years, 9 months ago](https://wordpress.org/support/topic/mx4-theme-4-questions/#post-251951)
 * For item 4
 * Change this on CSS…
 * #page {
    background-color: white; margin: 0px auto; padding: 0; width: 560px;
   text-align: left; }
 * #footer {
    padding: 0; margin: 0 auto; width: 560px; clear: both; font-family:
   Verdana, Geneva, Arial, Helvetica, sans-serif; font-size: .9em; color: #888888;}
 * where
    width: 560px; width: [xxx]px;
 *  Thread Starter [doctorbean](https://wordpress.org/support/users/doctorbean/)
 * (@doctorbean)
 * [20 years, 9 months ago](https://wordpress.org/support/topic/mx4-theme-4-questions/#post-251983)
 * Ok thanks for the responses.And your right `i should read up on CSS.
 * thanks,
 * Alexander
 *  Thread Starter [doctorbean](https://wordpress.org/support/users/doctorbean/)
 * (@doctorbean)
 * [20 years, 9 months ago](https://wordpress.org/support/topic/mx4-theme-4-questions/#post-252003)
 * Hey gutielua,your answer to Q4. what file am I editing.
 * thanks,
 * Alexander
 *  Thread Starter [doctorbean](https://wordpress.org/support/users/doctorbean/)
 * (@doctorbean)
 * [20 years, 9 months ago](https://wordpress.org/support/topic/mx4-theme-4-questions/#post-252004)
 * Hey gutielua,your answer to Q4. what file am I editing.
 * thanks,
 * Alexander
 *  Thread Starter [doctorbean](https://wordpress.org/support/users/doctorbean/)
 * (@doctorbean)
 * [20 years, 9 months ago](https://wordpress.org/support/topic/mx4-theme-4-questions/#post-252006)
 * style.css/change width to [xxx]px; is that right ?.Please excuse my incompetence….
   css/html newbie.
 * Alexander
 *  [oumba96](https://wordpress.org/support/users/oumba96/)
 * (@oumba96)
 * [20 years, 9 months ago](https://wordpress.org/support/topic/mx4-theme-4-questions/#post-252011)
 * doc –
 * I believe that the stroke going down the page is actually controlled by css in
   the header.php file.
 * `#page { background: url("http://www.alexandersvideos.com/wp-content/themes/mx4_theme/
   images/kubrickbg.gif") repeat-y top; border-left: 1px solid #1F3851; border-right:
   1px solid #1F3851;}`
 * And, if I remember correctly, its the border-left and the border-right attributes
   that you need to change.
 *  Thread Starter [doctorbean](https://wordpress.org/support/users/doctorbean/)
 * (@doctorbean)
 * [20 years, 9 months ago](https://wordpress.org/support/topic/mx4-theme-4-questions/#post-252014)
 * Hey oumba96,
 * thanks I’ll attempt this instruction.
 *  Thread Starter [doctorbean](https://wordpress.org/support/users/doctorbean/)
 * (@doctorbean)
 * [20 years, 9 months ago](https://wordpress.org/support/topic/mx4-theme-4-questions/#post-252023)
 * oriecat,can you elaborate more on the answer to question 3.
 * thanks,
 * Alexander
 *  [oumba96](https://wordpress.org/support/users/oumba96/)
 * (@oumba96)
 * [20 years, 9 months ago](https://wordpress.org/support/topic/mx4-theme-4-questions/#post-252028)
 * I think that what he is saying is that you would need to change the css for the
   sidebar header –
 * `#sidebar h2 {
    display: block; background: #FAF9E8; border: 1px solid #dddddd;-
   moz-border-radius:5px; padding: 3px 2px 3px 3px; margin: 0 0 6px 0; color: #93425A;
   font-family: Verdana, Sans-Serif; font-size: 1.0em; text-transform: uppercase;
   font-weight: lighter; }
 * and what you would do is replace the background color with the url to the image
   you are wanting to use. All else fails, I typically try to find a blog that is
   doing this, and then use the firefox web designer tool to view the css code to
   get an idea of how something is done.
 *  Thread Starter [doctorbean](https://wordpress.org/support/users/doctorbean/)
 * (@doctorbean)
 * [20 years, 9 months ago](https://wordpress.org/support/topic/mx4-theme-4-questions/#post-252038)
 * thanks buddy

Viewing 11 replies - 1 through 11 (of 11 total)

The topic ‘MX4 Theme (4 questions)’ is closed to new replies.

 * 11 replies
 * 4 participants
 * Last reply from: [doctorbean](https://wordpress.org/support/users/doctorbean/)
 * Last activity: [20 years, 9 months ago](https://wordpress.org/support/topic/mx4-theme-4-questions/#post-252038)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
