• hi.. constructor is really good theme.
    here i have a difficulties on the color.
    I would like to make the text color in post to be different with text(link) in footer. now both seems refers to the color of “text” in the customize menu and color option of the constructor theme.
    Then I would like to make the link text in footer to be the same as normal text in footer that refers to “text alternative” color in color menu.
    Please advise how to do this..

    Thank you very much

Viewing 6 replies - 1 through 6 (of 6 total)
  • Add the following to style.css

    .copy a {
     	color: #aaa;
    }

    Thread Starter DewaSurya

    (@suryawijaya-1)

    great.. thanks..
    now another question.. ^^
    can i reduce the menu navigation width? it consumes alot of space..

    Change min-width in

    #menu li a,
    #menu li span{
        text-align:center;
        white-space: nowrap;
        display:block;
        padding:0 8px;
        font-weight:700 !important;
        min-width:104px;
        width:auto !important;
        width:104px;
        height:40px;
        line-height:40px
    }

    Thread Starter DewaSurya

    (@suryawijaya-1)

    Thank you Joseph, you are so helpful
    is it possible to change the menu background and on mouse over menu background to be transparent and/or change it with an image ?

    You’re welcome.

    Most of the menu styling are within the follwoing block of rules:

    #menu { right:0;bottom:0;margin-bottom: 6px; border-color: #aaa }
        #menu ul {  border-color: #aaa }
        #menu li {  border-color: #aaa }
        #menu li li { background-color:#fff  }
        #menu li:hover { background-color:#fff5c5 }
    
        #menu .current_page_item a,
        #menu .current-cat a{
            color:#ff6600
        }
        #menu .current_page_item li a,
        #menu .current-cat li a {
            color: #333
        }

    For menu buttons:

    #menu li {  border-color: #aaa }

    Child buttons:

    #menu li li { background-color:#fff  }

    Mouse over:

    #menu li:hover { background-color:#fff5c5 }

    See http://www.w3schools.com/css/pr_background.asp for CSS background property.

    Thread Starter DewaSurya

    (@suryawijaya-1)

    Hi Joseph,

    Well i have tried many ways but still didn’t found how to make it transparent. if i delete the background css it will just do the default, nothing changed..

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘text color’ is closed to new replies.