-
AuthorSearch Results
-
May 9, 2013 at 3:23 pm #117559
In reply to: Colour & Font Size Changes
Blimey Nick (said in a respectful posh London accent) Im so bloody impressed. Im gonna be sat on a train going home from a client visit in an hour or two and ill give it a try… A video too. Being spoilt but I am very grateful and I mean that
By the way, as im working locally how can I get you examples of my ideas. theres no attach button on here so I dont know how to share my ideas or do we just have t wait till I go live and then tell you the URL?
As always, you are brilliant
Thx
Andy
May 9, 2013 at 3:06 pm #117558In reply to: Colour & Font Size Changes
Hi,
Put up a menu on your website. Please don’t talk in abstractions and generalities or i will make up my own colors, sizes, etc. I get a vague notion of #6. The rest I think I get. I made video of me doing it. Good stuff for youttube.. Website crashed in middle of video though. I didn’t do responsive since i dont think it will make any difference regarding colors, that flying underscore though probably needs 1 media query.
/*triangle killer*/
#top .current-menu-item>a>.avia-menu-fx>.avia-arrow-wrap,#top .current_page_item>a>.avia-menu-fx>.avia-arrow-wrap {
display: none;
}
/*menu top font color off*/
#top .header_color .main_menu ul:first-child>li>a {
color:rgb(255,8,8);
font-size: 1.1em;
}
/*menu top font color hover*/
#top .header_color .main_menu ul:first-child>li>a:hover {
color:rgb(8,255,255);
font-size: 1.1em;
}
/*sub menu font color */
#top .main_menu .menu ul li>a {
color:green;
word-spacing:1.2em;
font-size: 1.1em;
}
/*sub menu font color hover*/
#top .main_menu .menu ul li>a:hover {
color: blue !important;
}
/*sub menu background off*/
#top .header_color .main_menu .menu ul li a:hover {
background-color: rgb(12,9,122);
}
/*sub menu background hover*/
#top .header_color .main_menu .menu ul li a:hover {
background-color: rgb(68,9,9);
}
/*underlines now float above menu*/
#top .avia-menu-fx {
display:block;
position:absolute;
top: 25px;
}Video is uploading, gonna be here in 5 mins.
Thanks,
Nick
May 9, 2013 at 1:55 pm #117557In reply to: Colour & Font Size Changes
Hi there,
Well, im having fun trying things out but the menu/navigation is a tricky beast. Ive been trying all sorts of things but nothing seems to work even following other peoples examples and following your process still leaves me stumped… here’s what Id love to do
1) Increase the font size but make it responsive in the right way
2) Change the word spacing
3) Remove the triangle tick over the line and thicken the line
4) Change the colours of the OFF/ROLLOVER & ON states of any dropdown
nice to haves
5) Move the Menu (highlight line) above the text
6) Add a feint line attached to this that spans the entire menu set
Is this all BIG LEAGUE stuff or can I do any of this relatively easily?
Cheers again for all your support
Andy
p.s if theres a way to send me an image of what im trying to do then please let me know and ill send a jpg
Great! Thanks!
Im used to doing stuff like this at child themes, but I guess this way also is safe for future updates.
May 9, 2013 at 8:28 am #117556In reply to: Colour & Font Size Changes
Andy,
You are the first person to ever ask me that question (whether to start a new thread), most just ask 3 pages of unrelated questions over 5 months. Thanks for asking! Nah you can continue here since its relevant to the overall theme of our exchange.
I felt that in your case best thing to do was to get you hooked on the google tool since then you can customize your own look. read somewhere carefully about position:absolute and position:relative and how they relate to each other when one div is relative inside an absolute div and vice versa and how that affects margin and padding. Also try to move your logo for example to the bottom right corner of screen without messing anything else up using right:20px .left, down, top, and the position: tag… Goodstuff.
It’s not difficult to edit it. Now sitting down in front of an empty screen and writing it from nothing is difficult.
So ask away.
Thanks,
Nick
1) To change the font size/line height of the main font insert following code into the quick css field:
body {
font: 13px/1.65em "HelveticaNeue", "Helvetica Neue",Helvetica,Arial,sans-serif;
}and replace 13px and 1.65em (line height) with your custom values.
2) Use following css code for the main menu font:
.main_menu ul:first-child>li>a {
font-size: 13px;
}May 9, 2013 at 5:41 am #117555In reply to: Colour & Font Size Changes
Hey Nick,
Ive taken my personal portfolio offline while I rebuilt it. The basic Enfold installation is there and thats due to be replaced with a countdown. Not sure how I show you something local other than to give you a screen shot.
Good news though in that I sorted the colouring out using your method so thank you. Basically I should have been using ‘icon box’ and not ‘Icon list’ and then it was a case of trial and error.
I think for the most part I can get on now but as im creating a dark (chocolate) background based look and feel I have two other questions which relate to the main menu. should I start a new thread or continue talking to you here?
Cheers again and thanks for all your help. You are the first person who has tried to help me understand it properly and not just assumed im casting a spell in some mystical dark arts… although it does still feel a bit like that.
all the best
Andy
webpress
ParticipantHow do we make the fonts bigger?
Main font and main menu font that is…
May 8, 2013 at 1:06 pm #117554In reply to: Colour & Font Size Changes
Hi,
Ok thats good, however that won’t always work. You need to add #top before everything (which is from the body tag) , this way you will get more specificity and override the original code. Sometimes for some real hard cases, you need to add !important; to the end of the statement — color: red !important;
if your code ignored, do this. Open up chrome developer tools like this ( http://i.imgur.com/RfNyIBs.png ) find custom.css file in there step 2, then you add your changed code into the screen in middle, just don’t forget to copy it if you need to refresh ) and enter the css directly, if nothing changes, add #top, take something off, and you will see results live, so this way you don’t have to copy and paste and save every time to see whats working and what isnt. also you can edit the html live too and any of the files, but as soon as you refresh, its all gone.
also don’t use media=”screen” unless you see something like @media only screen and (max-width:767px) { .. if you see that, you need to grab that since that’s a media query (which is css that works on a specific screen size for mobile/tablets).
so first try (your code with #top directive)
#top .avia-icon-list .iconlist_icon {
height:64px;
width:64px;
line-height:60px;
font-size:30px;
text-align:center;
border-radius:500px;
position:relative;
float:left;
margin-right:30px;
margin-left:2px;
z-index:5;
border-style:solid;
border-width:2px;
color: #fff;
}Then as you get comfortable you will see that css is like a postal address country, state, city, street, house.. further you go in the more specific it becomes. So you can take the less specific stuff off sometimes.
#top .avia-icon-list .iconlist_icon {
background-color: #d73119;
}
I wish you had a url, where I can look at these disks. when i click url from your name , a website loads, but nothing there.
Don’t give up on this tool, watch a youtube tutorial for it because its as easy or complex as you want it to be. Its the only one I use and only one many (if not all) use to debug or modify any website.
Thanks,
Nick
May 8, 2013 at 9:02 am #117553In reply to: Colour & Font Size Changes
Hey Nick,
I think ive fathomed how to change the color although I seem to wrestle with internal CSS components which seems to mean my code is ignored half the time. Theres clearly a process I need to go through but its a bit hit and miss.
**/SEE BELOW/**
.avia-icon-list .iconlist_icon{height:64px; width:64px; line-height: 60px; font-size: 30px; text-align: center; border-radius: 500px; position: relative; float:left; margin-right:30px; margin-left:2px; z-index: 5; border-style:solid; border-width:2px; color:#fff;
}
.main_color .avia-icon-list .iconlist_icon {
background-color: #d73119;
}
it seems that I can do it providing I have both parts but im not sure why. I got the first part from another post.
Anyway, my last question on this is how do I create this same entypo disc without the the list content to the right. This is mainly because I want to create individual entypo discs with my own descriptive text either above or below it (centred or left justified). Im kicking myself for not just asking that question at the start
Cheers
Andy
May 8, 2013 at 6:26 am #114604In reply to: Enfold Feature Requests
More flexible Icon-Box – means:
1. allow the additional use of custom icons
2. more styling options (background, font size ect…)
May 7, 2013 at 10:09 pm #117552In reply to: Colour & Font Size Changes
hi again…
and to add to this. what if all I want to do is use the entypo font pictogram inside a single disc/circle? exactly the same as the Icon list but without the text or dotted lines. I cant find anything to help me at all
Cheers
Andrew
May 7, 2013 at 9:55 pm #117551In reply to: Colour & Font Size Changes
Hi there,
I think we got our wires crossed as the section I was referring to is the ‘Avia icon_list’ the discs which contain the entypo glyphs. I wanted to change the disc and the outline and leave the entypo glyphs white. I also want to resize them too
When I use the inspector I come across the following…
media="screen"
.main_color .avia-icon-list .iconlist_icon {
background-color: #d73119 !important;
}and whilst changing the color works in the inspector as soon as I drop it into the CSS of my child theme nothing changes. I thought adding !important might help (assuming I understood its importance which I guess now I dont!!) but it did nothing.
Thing is, this is where I usually come stuck as ive followed your instructions but things like this wont change. Im clearly not doing something but what is it that im doing wrong? Can you help me understand as my next thing is changing the dropdown background on the top nav and I know that will be the same issue.
May 7, 2013 at 2:39 pm #117550In reply to: Colour & Font Size Changes
Hi,
This is the url of the About Us section of the demo http://kriesi.at/themes/enfold/pages/about-us/ … There are no icons here , but I am guessing thumbnail photos – like when you run the mouse over harrold houdini’s photo?
I got this css exactly the same way as shown on the above video using chrome developer tools
/*---these are the colors when mouse hovers--*/
#top .avia-team-member .twitter:hover {
color: rgb(70, 212, 254);
}
#top .avia-team-member .dribbble:hover {
color: rgb(228, 72, 133);
}
/*---this is the regular color of the icon inside circle--*/
#top .main_color .team-social a
color: grey;
}
/*---this is complete settings controlling size, shape, background color, position of the circle itself--*/
#top .team-social a {
text-decoration: none;
position: relative;
border-radius: 30px;
padding: 0 16px;
background: rgb(224, 17, 17);
margin: 3px;
display: inline-block;
height: 53px;
line-height: 54px;
width: 53px;
}Keep playing with developer tools, i know at first it seems oppressive, but there is nothing better than this to use to quickly be able to edit css of any site.
Thanks,
Nick
May 6, 2013 at 8:08 pm #117549In reply to: Colour & Font Size Changes
Hi Nick,
thats great and I think when we talk basic changes like H1 text, logo heights etc… the way you mention seems relatively straight forward for a novice. Where Ive become continuously unstuck are things like the discs (behind the icons) if I want them a different colour or size, or to change things that have (what i call) nested button states – the drop down menu for instance as I want to change the colours of the ‘drop down’ background but because there are several states (off, rollover and sometime on) I cant quite find the right piece of code using the method you mention. I also want to alter the (moving) thin underline when you rollover the top nav so that I remove the middle ‘tick’ mark and increase the thickness slightly but again I can’t see where the correct code is amid a sea of other comments. This im sure is my inexperience but any clue as to how to deal with such things would be warmly received
Cheers
all the best
Andy
May 6, 2013 at 7:54 pm #117548In reply to: Colour & Font Size Changes
Hi,
Your best bet is to instal Chrome Developer Tools and without needing to know CSS you can manipulate the elements easily. I just made a video https://docs.google.com/file/d/0B8hqGBMSfHtKd2l6UkcwUjVBVWM/edit?usp=sharing showing how easy it is to change the menu any way you want , copy and paste to quick css in the theme backend. This is the best tool for editing without the learning curve.
Thanks,
Nick
May 6, 2013 at 11:13 am #117171In reply to: buttion problem in ie8
thanks and I found the min-width shall be made to the code below, but how can I add such change to the quick CSS?
.avia-button.avia-size-small{
padding:7px 10px;
font-size: 13px;
min-width: 120px;
}
.avia-button.avia-size-medium{
padding:10px 0px;
font-size: 14px;
min-width: 90px;
}
.avia-button.avia-size-large{
padding: 13px 30px;
font-size: 14px;
min-width: 127px;
May 5, 2013 at 2:21 pm #22857Topic: Colour & Font Size Changes
in forum Enfoldandypeck
ParticipantHi there,
Trying to change a few things as im creating a dark theme with a chocolate background with dark red buttons, labels & icons. Ive looked through the layout CSS file and cant seem to change/find what I need
1) The font sizes throughout – in particular the H1 tags and the main menu fonts. I want to use much bigger font sizes. When I try to change the menu in the layout CSS file nothing happens which I presume is because of responsive control settings
2) Changing the drop down nav background to red with black/white text and also a lighter rollover background version
3) The circular disc backgrounds (as used in the demo ‘About Us’ section) id like to change the disc background to the mentioned red colour
Cheers
May 4, 2013 at 5:49 pm #117058In reply to: Mobile Fixed Header
Hey!
Use:
style="font-size: 13px"instead. Afaik font size=”” is outdated.
Best regards,
Peter
May 3, 2013 at 7:06 pm #116990Here was my css code:
.main_menu ul:first-child > li > a {
font-size: 152px;
}
#header {
position: fixed;
}
I removed the top code and the site renders, but the bottom code cuts off about an inch of each page.
May 3, 2013 at 3:14 pm #117057In reply to: Mobile Fixed Header
OK, Thanks that helped.
Can you advise of the best way to increase the size of the phone # ?
Right now I’m using <font size=”4″>xxx-xxx-xxx
It doesn’t work well on all browsers,
Thanks
May 3, 2013 at 5:21 am #116075.menu-item a {
font-size: 20px!important;
}
Thanks man, this one works
May 2, 2013 at 6:56 am #116074Hi,
Try this on your Quick CSS or custom.css
.menu-item a {
font-size: 20px!important;
}Regards,
Ismael
May 1, 2013 at 9:19 pm #116778In reply to: Changing the 'Icon List' icon size animation
Hi,
You can make it smaller with this code
.avia-icon-list .iconlist_icon{height:64px; width:64px; line-height: 60px; font-size: 30px; text-align: center; border-radius: 500px; position: relative; float:left; margin-right:30px; margin-left:2px; z-index: 5; border-style:solid; border-width:2px; color:#fff;}Change the values of height, width, line-height and font-size properties. Something like this.
.avia-icon-list .iconlist_icon{height:50px; width:50px; line-height: 50px; font-size: 20px; text-align: center; border-radius: 500px; position: relative; float:left; margin-right:30px; margin-left:2px; z-index: 5; border-style:solid; border-width:2px; color:#fff;}Regards,
Ismael
May 1, 2013 at 9:09 pm #116634In reply to: Hover Overlay
Hi,
1.) Edit css > base.css and find this code.
.image-overlay .image-overlay-inside::before{content:"E744"; font-family: 'entypo-fontello'; font-size: 18px; font-weight: normal; }
.image-overlay.overlay-type-extern .image-overlay-inside::before{content:"27A6";}
.image-overlay.overlay-type-video .image-overlay-inside::before{content:"25B6";}You can change it to something like this.
.image-overlay .image-overlay-inside::before{content:"E744"; font-family: 'entypo-fontello'; font-size: 18px; font-weight: normal; }
.image-overlay.overlay-type-extern .image-overlay-inside::before{content:"E723";}
.image-overlay.overlay-type-video .image-overlay-inside::before{content:"E723";}Change the “content” property using Entypo. Refer to this link. http://www.entypo.com/characters/
Regards,
Ismael
May 1, 2013 at 8:34 pm #116744Hi,
Yes, you can style a specific category page but only the overview page of a certain category not the single view of the products included on that category. On the category overview page all you can change is the title of the products and the add to cart button text. For example you have a category named jewelry. You can add something like this on your custom.css or Quick CSS.
.term-jewelry .product h3.cufon_headings {
font-size: 20px;
}Another example is shoes. You can add .term-shoes instead.
Regards,
Ismael
May 1, 2013 at 6:52 am #116585In reply to: Mega menus
Hi,
I don’t see anything on the website. My suggestion is to make the font size small. Maybe you might have to do it by separating some of the menus. Please make the site live so that we can inspect it.
Regards,
Ismael
May 1, 2013 at 2:05 am #22666KDSfrog
ParticipantOkay some basic questions:
I have Abundance and have used shortcodes to put products into certain pages not just the SHOP page. i.e: Bracelets on a bracelet page, Necklaces on the Necklace page, etc. But now I want to add CSS to make the font and sizes specific to my products across the board.
Where do I put the CSS code, in the quick CSS? and how do I specify my products on this one.
Also my pictures are showing up stretched, I imported them before I got this theme do I have to upload them again or where do I see the correct sizes they should be not to be misshapen? how do I fix this…
Thanks.
Hope you can help a newbie…
KDS
April 30, 2013 at 10:35 am #116176In reply to: Enfold – fixed font-sizes?
Hi bluemoonink,
I prefer it simply because it allows me to have control over the end result just a little bit more. If you also start with a base size, you know every other percentage css is based on a base size.
But you are always open to changing things as you want :)
Regards,
Devin
April 30, 2013 at 7:09 am #116208In reply to: Adjusting Font Sizes
Yes, insert following code into the chick css field and adjust the font size value:
h1 { font-size: 34px; line-height: 1.1em; margin-bottom: 14px;}
h2 { font-size: 28px; line-height: 1.1em; margin-bottom: 10px; }
h3 { font-size: 19px; line-height: 1.1em; margin-bottom: 8px; } /*28*/
h4 { font-size: 17px; line-height: 1.1em; margin-bottom: 4px; } /*21*/
h5 { font-size: 16px; line-height: 1.1em; } /*17*/
h6 { font-size: 14px; line-height: 1.1em; } -
AuthorSearch Results
-
Search Results
-
Topic: Font size
How do we make the fonts bigger?
Main font and main menu font that is…
Topic: Colour & Font Size Changes
Hi there,
Trying to change a few things as im creating a dark theme with a chocolate background with dark red buttons, labels & icons. Ive looked through the layout CSS file and cant seem to change/find what I need
1) The font sizes throughout – in particular the H1 tags and the main menu fonts. I want to use much bigger font sizes. When I try to change the menu in the layout CSS file nothing happens which I presume is because of responsive control settings
2) Changing the drop down nav background to red with black/white text and also a lighter rollover background version
3) The circular disc backgrounds (as used in the demo ‘About Us’ section) id like to change the disc background to the mentioned red colour
Cheers
Okay some basic questions:
I have Abundance and have used shortcodes to put products into certain pages not just the SHOP page. i.e: Bracelets on a bracelet page, Necklaces on the Necklace page, etc. But now I want to add CSS to make the font and sizes specific to my products across the board.
Where do I put the CSS code, in the quick CSS? and how do I specify my products on this one.
Also my pictures are showing up stretched, I imported them before I got this theme do I have to upload them again or where do I see the correct sizes they should be not to be misshapen? how do I fix this…
Thanks.
Hope you can help a newbie…
KDS
