Post by roginc » Mon Aug 28, 2017 5:04 am

I have attach photo of which text i want to change in top of the picture i want to change text from white (because this text its not visible on mobile in white) to any other color and i really dont know how. This both are clicable buttons with text i want to change this text to black colors. Login or register are on click button/s, other is text

Can someone please write me steps how to do that, its really frustrating for me (i have language pack).

Regards

Attachments

bad.jpg

bad.jpg (76.34 KiB) Viewed 2625 times


Newbie

Posts

Joined
Mon Aug 28, 2017 4:43 am

Post by yodapt » Mon Aug 28, 2017 8:01 am

What is the store url?

Opencart Developer - My Extension Showcase
Contact me at aeon.yoda@gmail.com


User avatar
Active Member

Posts

Joined
Fri Jun 17, 2011 6:39 pm


Post by roginc » Mon Aug 28, 2017 4:41 pm


Newbie

Posts

Joined
Mon Aug 28, 2017 4:43 am

Post by roginc » Mon Aug 28, 2017 5:22 pm

I just want to change the text collor that i marked in immage in first page i hope you could open image

Newbie

Posts

Joined
Mon Aug 28, 2017 4:43 am

Post by yodapt » Mon Aug 28, 2017 7:35 pm

Add this piece of code to the main CSS file in your template. I would tell you which one but you are using cache, so you have to figure out yourself. Also, clear cache when you're done :

Code: Select all

#welcome_message, #welcome_message p, #welcome_message a  {
    color: red;
}
Where it says "red", you can add the color you want. Search "hex colors" on google to get the codes of colors instead of their names.

Opencart Developer - My Extension Showcase
Contact me at aeon.yoda@gmail.com


User avatar
Active Member

Posts

Joined
Fri Jun 17, 2011 6:39 pm


Post by roginc » Mon Aug 28, 2017 9:38 pm

i cannot find this text - can you pleease help me find it? / i dont know which is main CSS file

Newbie

Posts

Joined
Mon Aug 28, 2017 4:43 am

Post by yodapt » Tue Aug 29, 2017 12:56 am

Inside your theme folder, there is a folder called "stylesheet" which has your CSS files. One of them, if there is more than one, should ressemble the main one, so you just need to put that piece of code in that file and clear cache. I can't do more that this without looking at the actual code.

Opencart Developer - My Extension Showcase
Contact me at aeon.yoda@gmail.com


User avatar
Active Member

Posts

Joined
Fri Jun 17, 2011 6:39 pm


Post by IP_CAM » Tue Aug 29, 2017 3:13 am

This is the content of your Site Index File Source. It's 'controlled' by the CSS-CLASS tb_text_wrap:
<div class="tb_text_wrap tb_sep"><p>Če že imate račun, se, prosimo, prijavite na ......

And this is the HTML Page Source "tb_text_wrap STYLE content:

Code: Select all

.tb_text_wrap a:not(.btn):not(:hover){color:#ffffff}.tb_area_footer .tb_text_wrap a:not(.btn):hover{color:#e4f2c9}
Wich exists, im compressed Form, as:
http://www.zabavni-izdelki.si/image/cac ... 2045598396
and declares the Font Color to be white:
.tb_text_wrap a:not(.btn):not(:hover){color:#ffffff}
---
The Style 'Class' could probably be found in the stylesheet.css file,
possibly placed here:
catalog/view/theme/BurnEngine/stylesheet/stylesheet.css
And it's possibly even this one, in the GIANT Piece of custom cached Output File:

Code: Select all

 a:not(.btn):not(:hover){color:#ffffff}
But you should better contact your Theme Seller, and ask for, if you are not
very familiar with CSS, and or coding in general. It's a paid theme, so no-one
would know, not using the same Theme. And those who do, don't come here,
to tell you for free... :D

But it's all just guessing, since everything is VERY CUSTOM !
Good Luck! ;)
Ernie

My Github OC Site: https://github.com/IP-CAM
5'200 + FREE OC Extensions, on the World's largest private Github OC Repository Archive Site.


User avatar
Legendary Member

Posts

Joined
Tue Mar 04, 2014 1:37 am
Location - Switzerland

Post by roginc » Tue Aug 29, 2017 3:38 am

For this i go to my host CP panel is this correct? Because i got also stilesheet in my admin burn engine?

i got in CP panel those 2:

/public_html/catalog/view/theme/default/stylesheet/stylesheet.css
/public_html/admin/view/stylesheet/stylesheet.css

But i dont find at any of them the code that you write to me to change color

Newbie

Posts

Joined
Mon Aug 28, 2017 4:43 am

Post by yodapt » Tue Aug 29, 2017 4:35 am

You are using a theme other than the default, so the names of the files might be different. Check the name of the theme you are using and search it under /catalog/view/theme/

Opencart Developer - My Extension Showcase
Contact me at aeon.yoda@gmail.com


User avatar
Active Member

Posts

Joined
Fri Jun 17, 2011 6:39 pm


Post by roginc » Tue Aug 29, 2017 8:16 pm

I go here is that correct: public_html/catalog/view/theme ? Then i have burn engine option or default

Newbie

Posts

Joined
Mon Aug 28, 2017 4:43 am

Post by roginc » Tue Aug 29, 2017 8:20 pm

yodapt wrote:
Mon Aug 28, 2017 7:35 pm
Add this piece of code to the main CSS file in your template. I would tell you which one but you are using cache, so you have to figure out yourself. Also, clear cache when you're done :

Code: Select all

#welcome_message, #welcome_message p, #welcome_message a  {
    color: red;
}
Where it says "red", you can add the color you want. Search "hex colors" on google to get the codes of colors instead of their names.
Can you help me with that? wher e is the main CSS file in my template where i need to go to find it? Is this correct: public_html/catalog/view/theme/default/stylesheet

?

Newbie

Posts

Joined
Mon Aug 28, 2017 4:43 am

Post by yodapt » Tue Aug 29, 2017 8:33 pm

Check your PM

Opencart Developer - My Extension Showcase
Contact me at aeon.yoda@gmail.com


User avatar
Active Member

Posts

Joined
Fri Jun 17, 2011 6:39 pm


Post by roginc » Wed Aug 30, 2017 3:31 am

i cannot do it i cannot find this in stylesheet.css :(

Newbie

Posts

Joined
Mon Aug 28, 2017 4:43 am

Post by roginc » Wed Aug 30, 2017 4:55 am

im using pavilion minimal 2.0.2 / burnengine

Newbie

Posts

Joined
Mon Aug 28, 2017 4:43 am

Post by yodapt » Wed Aug 30, 2017 6:44 am

Contact the theme author about it.

Opencart Developer - My Extension Showcase
Contact me at aeon.yoda@gmail.com


User avatar
Active Member

Posts

Joined
Fri Jun 17, 2011 6:39 pm

Who is online

Users browsing this forum: No registered users and 44 guests