The reason why it keeps changing back to what it was is because the files are within ShopSite. When you bypass ShopSite, and edit the files outside of ShopSite, such as through a file manager, then the next time ShopSite republishes, ShopSite uses its un-edited files and replaces your edited files. So you will need to upload and edit the files within ShopSite.
That said, go to Merchandising > Custom Templates > Includes > New Publish File. Name the publish file exactly "3Column-01.css". This will override the original 3Column-01.css file. Then in the 3Column-01.css publish file, add the code below.
3Column-01.css- Code: Select all
#header {
height: 100px;
overflow: hidden;
position: absolute;
top: 30px;
}
#logo h1 {
font-size: 30px;
font-weight: normal;
margin: 0px;
padding: 10px 20px;
}
#search {
padding: 40px 0px 0px 0px;
}
#toplinks {
height: 30px;
line-height: 30px;
background-image: url(https://shopsite.fatcow.com/ss11.2/shopsite-images/en-US/backgrounds/3col/topnav-bg.jpg);
background-position: bottom right;
background-repeat: no-repeat;
}
#colorbar {
background-image: url(https://shopsite.fatcow.com/ss11.2/shopsite-images/en-US/backgrounds/3col/3col-clrbr-01.png);
background-position: top right;
background-repeat: no-repeat;
top: 162px;
height: 60px;
}
#colorbar h2 {
font-weight: normal;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 160%;
line-height: 54px;
color: #FFFFFF;
margin: 0px;
padding: 3px 0px 0px 40px;
}
#container {
margin: 224px auto 0px auto;
}
#left, #right {
border-color: #FFFFFF;
}
#left {
background-image: url(https://shopsite.fatcow.com/ss11.2/shopsite-images/en-US/backgrounds/3col/side-bg.jpg);
background-position: top left;
background-repeat: repeat-x;
}
#left a, #left a.left_pagelink, #right a, table#mini-detail td {
border-color: #CDCDCD;
}
#left a, #left a.left_pagelink {
background-image: url(https://shopsite.fatcow.com/ss11.2/shopsite-images/en-US/backgrounds/3col/side-bullet.png);
background-position: center left;
background-repeat: no-repeat;
}
#left a.left_pagetitle, #right a.right_pagetitle {
color: #000000;
text-align: left;
border-bottom: 0px;
}
#table td.side-line, #table td.side-line img {
background-color: #E9E9E9;
}
#pagination, #pagination2 {
background-image: url(https://shopsite.fatcow.com/ss11.2/shopsite-images/en-US/backgrounds/3col/pagination-bg.jpg);
background-position: center center;
background-repeat: no-repeat;
}
#right {
background-image: url(https://shopsite.fatcow.com/ss11.2/shopsite-images/en-US/backgrounds/3col/side-bg.jpg);
background-position: top left;
background-repeat: repeat-x;
}
#footercategories, #press-recal {
background-color: #DEDEDE;
}
div.footcat, div.footer_pagelinks {
border-color: #FFFFFF;
}
#footertext, #footerlinks_inner, #footerlinks_inner a, #lastline {
color: #777777;
}
#footerlinks {
border-color: #777777;
}
/* -- Product On Category Pages -- */
.pr, .gc_pr_hm, .pc_pr {
border: 1px solid #DEDEDE;
background-image: url(https://shopsite.fatcow.com/ss11.2/shopsite-images/en-US/backgrounds/3col/product-bg.jpg);
background-position: bottom left;
background-repeat: repeat-x;
}
#progressbar {
background-color: #EFD230;
}
#toptabs {
top: 130px;
height: 27px;
border-bottom: 3px solid #0997D7;
}
.suckertreemenu ul li a {
background: #0997D7;
border-top-left-radius: 3px; border-top-right-radius: 3px; -moz-border-top-left-radius: 3px; -moz-border-top-right-radius: 3px; -webkit-border-top-left-radius: 3px; -webkit-border-top-right-radius: 3px;
line-height: 28px;
min-width: 140px; border-right: 1px solid #FFFFFF;
}
.suckertreemenu ul li:last-child {float: right; clear: none;}
.suckertreemenu ul li:last-child a {background: #113F6D; border-right: 0px; border-left: 1px solid #FFFFFF;}
.suckertreemenu ul li:last-child a:hover {background: #194E84;}
.suckertreemenu ul li ul li a {min-width: 200px; border-top: 1px solid #0186BF; border-right: 0px; line-height: 30px; border-top-left-radius: 0px; border-top-right-radius: 0px; -moz-border-top-left-radius: 0px; -moz-border-top-right-radius: 0px; -webkit-border-top-left-radius: 0px; -webkit-border-top-right-radius: 0px;}
.suckertreemenu ul li a:hover {background: #0186BF;}
If you want to edit the color of the last link, the main background color (the dark blue) is 113F6D, you can find that in the CSS code above and replace it with the color you want. The hover color (slightly lighter dark blue) is 194E84.
Last, go to Preferences > Navigation > Add, and add another menu link. Whatever your LAST menu link is, will be the link that is aligned right and is the darker blue.