account page question

Gabby

Well-known member
Where would I find the controls to work with the design/colors on the attached page? I've looked everywhere.

Thanks
 

Attachments

  • question.webp
    question.webp
    54.9 KB · Views: 7
ok thank you ragtek. just wasted an hour looking through all the style properties. :rolleyes:
me too (ok some minutes) but after i hadn't found anything, i checked the template and have seen that there are no own style properties for this
some colors & font sizes are even hardcoded in the css template:(
 
Ok I checked that tempate and can't find where to change the "Your account" text color on that page above the left sidebar verticle menu.

Thanks.
 
yes, it's in the template account.css


just add color: xxx to this part

e.g.
Code:
.accountSideBar .heading
{
border-top-right-radius: 0;
margin: 10px 0 0;
color:red;
}
 
Top Bottom