-
AuthorPosts
-
January 2, 2017 at 1:40 pm #728533
There is not much space. I want it more broad. There is not much space for text.
What can I do? what do you recommend??January 2, 2017 at 2:03 pm #728555Hi,
I can’t find the elements you’re showing on the link you’ve provided. So again: please always provide us a precise link to the elements in question.
Best regards,
AndyJanuary 2, 2017 at 2:41 pm #728598January 2, 2017 at 5:49 pm #728703Hi,
I checked the screenshot you gave, I think the spaces on left and right is just right, though I’m not really sure if that’s what you wanted to point out, but if it is, try adding this code in Quick CSS:
.js_active .top_tab .tab { padding-left: 24px; padding-right: 24px; }
Just adjust the values as you see fit. Hope this helps :)
Best regards,
NikkoJanuary 2, 2017 at 11:44 pm #728788how can i make the text smaller in the element?
This would help maybe to make the text fit.The issue is in the desktop version but also mobile version. And I dont know what I can do to make the text fit.
- This reply was modified 7 years, 10 months ago by lech07.
January 3, 2017 at 8:27 am #728873Hi,
You can make the text smaller in it by adjusting the code I gave and add a font-size property, it would look like this:
.js_active .top_tab .tab { font-size: 9px !important; padding-left: 24px; padding-right: 24px; }
However, I don’t think making it smaller than it is, is a good idea. I have checked the text in the tab which is Vejledende pris and I can see it fit perfectly even without the code I gave. The screenshot you gave http://imgur.com/a/qDKTF also shows that it doesn’t overlap or have some text being hidden.
Best regards,
NikkoJanuary 3, 2017 at 5:46 pm #729079the issue is that the text under/inside wont fit properly in resized or mobile versions:
January 4, 2017 at 7:41 am #729314Hi,
Try adding the css code below in Quick CSS (located in Enfold > General Styling):
@media only screen and (max-width:767px) { .av-catalogue-image { float: none; margin-left: auto; margin-right: auto; display: block; } .responsive .tabcontainer .tab_content { padding: 0 5px; } .av-catalogue-content p { font-size: 10px !important; } }
Then try to adjust the content by removing some of the dots in … Hope this helps. :)
Best regards,
NikkoJanuary 5, 2017 at 4:57 pm #729937seems like it helps. i have put the code together with another code, so it looks like this: (is it correct/clean?)
@media only screen and (max-width: 767px) {
.progressbar-title {
font-size: 11px;
}
}@media only screen and (max-width: 767px) {
.av-catalogue-content p:last-child {
font-size: 11px;
}
.av-catalogue-image {
float: none;
margin-left: auto;
margin-right: auto;
display: block;
}.responsive .tabcontainer .tab_content {
padding: 0 5px;
}.av-catalogue-content p {
font-size: 10px !important;
}
}January 6, 2017 at 1:05 pm #730309Hi,
yes, seems clean and good to me.
Let us know in a new ticket if you have some more questions about our theme. We’re happy to help you out.
Best regards,
Andy -
AuthorPosts
- You must be logged in to reply to this topic.