hello dear sitepointers,
I need to be pointed to the right direction before I ruin the site. I’m newbie in CSS
Here: http://dynasties-hair-creations.com/ I want to modify grey alert box below the slider. I find out in Firebug that it has en element.style - oouch which I presume is inline CSS. That is bad for me because I’m more comfortable with external CSS. Ok, this time it’s not the case.
I’m trying to figure out how can I change the background color of this…
<div class="post-content">
<style type="text/css">
#reading-box-container-1 .tagline-shadow:before,#reading-box-container-1 .tagline-shadow:after{opacity:0.7;}
</style>
<div id="reading-box-container-1" class="reading-box-container clearfix">
<section class="reading-box " style="background-color:#f6f6f6 !important;border-width:0px;border-color:#f6f6f6!important;border-left-width:3px !important;border-left-color:#FBAEFF!important;border-style:solid;">
</div>
And element.style itself in Firebug:
element.style {
background-color: #F6F6F6 !important;
border-bottom-width: 0;
border-color: #F6F6F6 #F6F6F6 #F6F6F6 #FBAEFF !important;
border-left-width: 3px !important;
border-right-width: 0;
border-style: solid;
border-top-width: 0;
}
Should I go to the HTML file and modify it directly there? Err, but how can I identify this element.style in HTML file? And what about the future maintainance of the file? Please help a newbie…