Jump to content

[SOLVED] How to change a font in correct place?


Recommended Posts

Hi, everybody. Need some help.

 

Prestashop version 1.6.0.6

 

Need to change font at this place: [rectangles]

f64a79ac7c7b85b61189ef802b766a60889.png

 

I know that I have to change the font in global.css file. Witch place correctly? Thanks in advance!

 

P.S. This is in "Contact-us" form.

Edited by vekia (see edit history)
Link to comment
Share on other sites

Hi, if you're using the default theme with no custom code, the Vartotju heading is H1 tag that does not have its own definition.

You can edit line nr6154 in the global.css file, but this will change all H1 tags with the same classes. If you want to change it anyway, I'd suggest using this syntax

#contact h1.page-heading {.....}

for the lower Siusti thingy, look for contact-form.css, line 25

.contact-form-box .page-subheading {
padding-left: 0px;
border: none;
margin-bottom: 0;
}
Link to comment
Share on other sites

 

Hi, if you're using the default theme with no custom code, the Vartotju heading is H1 tag that does not have its own definition.

You can edit line nr6154 in the global.css file, but this will change all H1 tags with the same classes. If you want to change it anyway, I'd suggest using this syntax

#contact h1.page-heading {.....}

for the lower Siusti thingy, look for contact-form.css, line 25

.contact-form-box .page-subheading {
padding-left: 0px;
border: none;
margin-bottom: 0;
}

What to change in the line 25 contact-form.css?

 

Thanks for the 1 suggestion, it worked.

Link to comment
Share on other sites

1) blockcart.css /themes/default-bootstrap/css/modules/blockcart/blockcart.css

.shopping_cart > a:first-child b {
color: white;
font: 600 18px/22px "Open Sans", sans-serif;
padding-right: 5px;
}

2) superfish-modified.css /themes/default-bootstrap/css/modules/blocktopmenu/css/superfish-modified.css

.sf-menu > li.sfHover > a, .sf-menu > li > a:hover, .sf-menu > li.sfHoverForce > a {
background: #333333;
border-bottom-color: #666666;
color: white;
}
Link to comment
Share on other sites

 

1) blockcart.css /themes/default-bootstrap/css/modules/blockcart/blockcart.css

.shopping_cart > a:first-child b {
color: white;
font: 600 18px/22px "Open Sans", sans-serif;
padding-right: 5px;
}

2) superfish-modified.css /themes/default-bootstrap/css/modules/blocktopmenu/css/superfish-modified.css

.sf-menu > li.sfHover > a, .sf-menu > li > a:hover, .sf-menu > li.sfHoverForce > a {
background: #333333;
border-bottom-color: #666666;
color: white;
}

Thank you so much. /close

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...