www.oihanevalbuenaredondo.be
I have made a font for my post titles in the css with font-family: adobe arabic
, on my windows, the title shows exactly how it should be, however, when I visit my blog on a mac, the title is just in a boring basic font, it isn't in 'Adobe arabic'. Why can safari not show the title in Adobe Arabic?
This is in document style.css:
.entry-title {
font-family: adobe arabic;
text-align: center;
letter-spacing: 1px;
color: #7f7f7f;
font-size: 28px;
position: relative;
margin: 0 0 10px 0;
padding: 0 60px;
}
.entry-title a:hover {
color: #d9d9d9;
}
And, I've got another question. If you're on a windows you will not see it, but the language option at the top of my page, is perfectly positioned on my windows, but on a mac, the position of the border and the dropdown are not even, one of them is more to the left.
this is the css i have for the border:
.topbar {
position: absolute;
right: 170px;
top:-8px;
font-size: 11pt;
color: #E1BDC3;
border: 1px dotted #999999;
border-radius:8px;
width: 255px;
height: 48px;
padding-top: 11px;
padding-left: 10px;
z-index: 1000;}
This is what I've got for the dropdown:
.widget_polylang {
position: absolute;
top: -330px;
width: 150px;
right: 20px;
z-index: 10001;}
This code is to position a widget. Because the dropdown can only be added to my blog with a widget. So I positioned the widget.
Maybe I did something wrong in the css, I don't know, I'm a beginner in HTML, this just worked fine for me on windows, but apparently it isn't right on mac.