• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: RSTrone! CSS for logo background

RSTrone! CSS for logo background 2 years 2 months ago #41844

I am using RSTrone! for a website. In the default template settings, I set a dark blue background for the body. I want a white background in the upper left where the logo goes, but I can't figure out the right CSS to use (using the inspector in Chrome). Can someone tell me the CSS selector(s) I need? It looks like it is using the file css/themes/template-9.css which I don't mind changing manually.
The administrator has disabled public write access.

RSTrone! CSS for logo background 1 year 9 months ago #42100

  • dragos
  • dragos's Avatar
  • OFFLINE
  • Administrator
  • Posts: 559
  • Thank you received: 102
Hello,

You can try adding something similar in RSTrone!'s custom.css file:
.rstpl-main-menu-position.logo-left::before {
  background-color: #000;
}
 
.rstpl-navigation .rstpl-brand.pull-left::after {
  background-color: #000;
}
 
.rstpl-navigation .rstpl-brand.pull-left::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpolygon points='0,0 100,0 0,100' style='fill:%23000;' /%3E%3C/svg%3E");
}

If you don't have a custom.css file created, you can do so as explained here.
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!