clord2015
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Tiny Framework] Changing padding between text links in top menuYep, should have thought of that.
Worked perfectly.
Many thanks!
Forum: Themes and Templates
In reply to: [Tiny Framework] Changing padding between text links in top menuThanks for the quick reply, Tomas.
I was probably not specific enough earlier, so I will be much more specific now.
I am trying to edit the theme:
Tiny Framework Child ExampleWhen I open the Stylesheet for that theme (style.css) and search for any instances of “783px” in the file, I find this is the only one:
@media screen and (min-width: 783px) {
/* Tip52 – Adjust default site layout for normal view *//*
.content-area {
float: left;
width: 65.104166667%;
}
.widget-area {
float: right;
width: 30.5%;
}
*/There is no margin parameter to change, as is present in the code you provided:
@media screen and (min-width: 783px) {
.main-navigation li {
position: relative;
margin: 0 40px 0 0;
margin: 0 2.5rem 0 0;
font-size: 12px;
font-size: 0.75rem;
line-height: 1.42857143;
}
}I also searched for instances of “.main-navigation li”, and that string is not present in style.css.
Am I even in the right file? Because I cannot locate any margins to edit under the 783px media query.
Again, many thanks for the help.
–Bud