Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS override external css one place

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #29192
    casmac
    Member

    I’m working in a e-commerce system and working on the product menu.
    I’ve made a general external stylesheet for the menu background, but 4 places I need to override the external css.
    Because I’m working inside a e-commerce system I’m limited in where I can edit or add code

    I wan’t to override my "a.Deactiv_Productmenu" style to create a custom background image.
    Is that possible in any why?

    Here are the code

    Code:


    Segment Header





    Test 1


    Test 2

    #76735
    noahgelman
    Participant

    You should be able to place and !important on it and it’ll override whatever the default is.

    Code:
    a.Deactiv_Productmenu {
    background-image: url(‘/design/bg.gif’)!important;
    color: #343E4C!important;
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘CSS’ is closed to new topics and replies.